added one more test to RobotTest

This commit is contained in:
Tobydrama 2020-02-22 14:19:46 +01:00
parent 0dac36a6ea
commit 98c0ceed15

View File

@ -19,6 +19,10 @@ public class RobotTest {
assertEquals(0, testRobot.getDamage()); assertEquals(0, testRobot.getDamage());
} }
@Test @Test
public void testRobotGetBackupOnInitializedRobot(){
assertEquals(robotPosition, testRobot.getBackupPosition());
}
@Test
public void testRobotSetDamage(){ public void testRobotSetDamage(){
testRobot.setDamage(2); testRobot.setDamage(2);
assertEquals(2, testRobot.getDamage()); assertEquals(2, testRobot.getDamage());