diff --git a/pdb-ui/src/test/java/org/lucares/pdbui/TimeTest.java b/pdb-ui/src/test/java/org/lucares/pdbui/TimeTest.java deleted file mode 100644 index 7b4f5a0..0000000 --- a/pdb-ui/src/test/java/org/lucares/pdbui/TimeTest.java +++ /dev/null @@ -1,24 +0,0 @@ -package org.lucares.pdbui; - -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; - -@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest(classes = MySpringTestConfiguration.class) -public class TimeTest { - - // @Autowired - // private PdbController timeController; - // - // @Test - // public void testReturnedTimeIsNow() throws Exception { - // final Date before = new Date(); - // - // final Date now = timeController.time(); - // final Date after = new Date(); - // - // Assert.assertTrue(before.compareTo(now) <= 0); - // Assert.assertTrue(now.compareTo(after) <= 0); - // } -}