package timer; import org.junit.After; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; public class ChessTimerTest { @BeforeClass public static void setUpBeforeClass() throws Exception { } @AfterClass public static void tearDownAfterClass() throws Exception { } @Before public void setUp() throws Exception { } @After public void tearDown() throws Exception { } @Test public final void testInit() { // fail("Not yet implemented"); // TODO } @Test public final void testActionPerformed() { // fail("Not yet implemented"); // TODO } @Test public final void testIsNoTimer() { // fail("Not yet implemented"); // TODO } @Test public final void testIsWordTimer() { // fail("Not yet implemented"); // TODO } @Test public final void testCreateTimer() { // fail("Not yet implemented"); // TODO } @Test public final void testStopTimers() { // fail("Not yet implemented"); // TODO } @Test public final void testGetClockDirection() { // fail("Not yet implemented"); // TODO } @Test public final void testGetDisplayLabel() { // fail("Not yet implemented"); // TODO } @Test public final void testGetStartTime() { // fail("Not yet implemented"); // TODO } @Test public final void testGetRawTime() { // fail("Not yet implemented"); // TODO } @Test public final void testReset() { // fail("Not yet implemented"); // TODO } @Test public final void testRestart() { // fail("Not yet implemented"); // TODO } @Test public final void testSetClockDirection() { // fail("Not yet implemented"); // TODO } @Test public final void testSetClockTime() { // fail("Not yet implemented"); // TODO } @Test public final void testStartTimer() { // fail("Not yet implemented"); // TODO } @Test public final void testStopTimer() { // fail("Not yet implemented"); // TODO } @Test public final void testTimeElapsed() { // fail("Not yet implemented"); // TODO } @Test public final void testUpdateDisplay() { // fail("Not yet implemented"); // TODO } }