| 123456789101112131415161718192021222324252627 |
-
-
- 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
- {
- @Test
- public void square(){
- Squares sq = new Squares();
-
- int expected= 2;
- int actual= 2;
-
- assertEquals(expected,actual);
-
-
- }
- }
|