import static org.junit.Assert.*; import org.junit.After; import org.junit.Before; import org.junit.Test; /** * The test class SquaresTest. * * @author (your name) * @version (a version number or a date) */ public class SquaresTest { /** * Default constructor for test class SquaresTest */ public SquaresTest() { } /** * Sets up the test fixture. * * Called before every test case method. */ @Before public void setUp() { } /** * Tears down the test fixture. * * Called after every test case method. */ @After public void tearDown() { } @Test public void Test1() { Squares squares2 = new Squares(); squares2.display(150); } @Test public void Test2() { Squares squares1 = new Squares(); squares1.display(175); } @Test public void Test3() { Squares squares1 = new Squares(); squares1.display(300); } }