Create and complete the implementation of the Square
class.
Your class should be public, not final and not abstract, inherit from the Shape
class,
and provide the following methods:
double
parameter.
Creates a new Square
with the passed side length.
You can assume that the passed size is greater than zero.
You should call the Shape
constructor and pass it the String
"square" to identify the type of this
shape.area
that takes no arguments and returns a double
.
Return the area of this shape: side * side
.public boolean equals(Object other)
.
Return true
if other
is a Square
with the same width and height, and false
otherwise.
Note that other
may be null
or not a Square
.Finally, note that your class should not expose any of its internal state publicly.
You're challenge is to write tests for this problem described above.
Stuck? You may find these lessons helpful: