Skip to content

Commit

Permalink
#40 initial test for class Event
Browse files Browse the repository at this point in the history
  • Loading branch information
britzke committed May 9, 2017
1 parent 3a6d587 commit f6e9af1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/test/java/de/rennspur/test/model/EventTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,16 @@
import de.rennspur.model.Waypoint;

/**
* @author bubi
* @author burghard.britzke bubi@charmides.in-berlin.de
*
*/
public class EventTest {

private Event proband;

/**
* Creates the proband for the test.
*
* @throws java.lang.Exception
*/
@Before
Expand Down Expand Up @@ -100,13 +102,12 @@ public void testRemoveWaypoint() {// useless comment
assertEquals("Waypoint must have been removed from the list of waypoint of this event", 0,
proband.getWaypoints().size());
}

/**
* Test method for
* {@link de.rennspur.model.Event#toString()}.
* Test method for {@link de.rennspur.model.Event#toString()}.
*/
@Test
public void testToString() {

}
}

0 comments on commit f6e9af1

Please sign in to comment.