Skip to content

Commit

Permalink
#40 new test cases for class model.Event... to be finished with imple…
Browse files Browse the repository at this point in the history
…mentation
  • Loading branch information
britzke committed May 8, 2017
1 parent 953956a commit cc4047e
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions src/test/java/de/rennspur/test/model/EventTest.java
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");
}

}

0 comments on commit cc4047e

Please sign in to comment.