added test
This commit is contained in:
80
OGP1718-Worms/tests/worms/model/WormTest.java
Normal file
80
OGP1718-Worms/tests/worms/model/WormTest.java
Normal 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() {
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user