-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#40 new test cases for class model.Event... to be finished with imple…
…mentation
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* This file is part of Renspur. | ||
* | ||
* Copyright (C) 2017 burghard.britzke [email protected] | ||
* | ||
* 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 <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
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"); | ||
} | ||
|
||
} |