Exemplo n.º 1
0
 @Test
 public void testGetType() {
   assertTrue(drawDat.getType().equals("TYPE"));
 }
Exemplo n.º 2
0
 @Test
 public void testGetWidth() {
   assertTrue(drawDat.getWidth() == 2);
 }
Exemplo n.º 3
0
 @Test
 public void testGetDirection() {
   assertTrue(drawDat.getDirection().x == 4);
   assertTrue(drawDat.getDirection().y == 4);
 }
Exemplo n.º 4
0
 @Test
 public void testGetHeight() {
   assertTrue(drawDat.getHeight() == 3);
 }
Exemplo n.º 5
0
 @Test
 public void testGetPosition() {
   assertTrue(drawDat.getPosition().x == 1);
   assertTrue(drawDat.getPosition().y == 1);
 }