Commit e960882b authored by Elijah's avatar Elijah

commit

parent 2720b351
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
No preview for this file type
No preview for this file type
public class Rectangle { public class Rectangle extends Shape{
// here
} }
public class Square { public class Square extends Shape {
public int getSize(){
super(3);
}
public Square(int i){
super(i);
}
public void draw(){}
public float area(){}
public float circumference(){}
} }
...@@ -77,7 +77,7 @@ public class unitTest { ...@@ -77,7 +77,7 @@ public class unitTest {
// ********************************* // *********************************
// Square Tests // Rectangle Tests
// ********************************* // *********************************
@Test @Test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment