added test

This commit is contained in:
2018-03-08 16:37:35 +01:00
parent a4e9834ab0
commit d82212f23e
2 changed files with 90 additions and 10 deletions

View File

@@ -0,0 +1,80 @@
package worms.model;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class WormTest {
@BeforeEach
void setUp() {
}
@Test
void getLocation() {
}
@Test
void getOrientation() {
}
@Test
void getRadius() {
}
@Test
void setRadius() {
}
@Test
void getMinimumRadius() {
}
@Test
void getMass() {
}
@Test
void getActionPoints() {
}
@Test
void getMaxActionPoints() {
}
@Test
void setActionPoints() {
}
@Test
void decreaseActionPoints() {
}
@Test
void getName() {
}
@Test
void setName() {
}
@Test
void move() {
}
@Test
void turn() {
}
@Test
void jump() {
}
@Test
void jumpTime() {
}
@Test
void jumpStep() {
}
}