From cc4047ed6f6e3678c8c45ecd323c30b453702c68 Mon Sep 17 00:00:00 2001 From: "burghard.britzke" Date: Mon, 8 May 2017 06:58:03 +0200 Subject: [PATCH] #40 new test cases for class model.Event... to be finished with implementation --- .../de/rennspur/test/model/EventTest.java | 72 +++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/test/java/de/rennspur/test/model/EventTest.java diff --git a/src/test/java/de/rennspur/test/model/EventTest.java b/src/test/java/de/rennspur/test/model/EventTest.java new file mode 100644 index 0000000..c14a2c4 --- /dev/null +++ b/src/test/java/de/rennspur/test/model/EventTest.java @@ -0,0 +1,72 @@ +/* + * This file is part of Renspur. + * + * Copyright (C) 2017 burghard.britzke bubi@charmides.in-berlin.de + * + * Rennspur is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Rennspur is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with Rennspur. If not, see . + */ + +package de.rennspur.test.model; + +import static org.junit.Assert.*; + +import org.junit.Before; +import org.junit.Test; + +/** + * @author bubi + * + */ +public class EventTest { + + /** + * @throws java.lang.Exception + */ + @Before + public void setUp() throws Exception { + } + + /** + * Test method for {@link de.rennspur.model.Event#addRace(de.rennspur.model.Race)}. + */ + @Test + public void testAddRace() { + fail("Not yet implemented"); + } + + /** + * Test method for {@link de.rennspur.model.Event#removeRace(de.rennspur.model.Race)}. + */ + @Test + public void testRemoveRace() { + fail("Not yet implemented"); + } + + /** + * Test method for {@link de.rennspur.model.Event#addWaypoint(de.rennspur.model.Waypoint)}. + */ + @Test + public void testAddWaypoint() { + fail("Not yet implemented"); + } + + /** + * Test method for {@link de.rennspur.model.Event#removeWaypoint(de.rennspur.model.Waypoint)}. + */ + @Test + public void testRemoveWaypoint() { + fail("Not yet implemented"); + } + +}