remove obsolete and disabled test

This commit is contained in:
2017-04-08 08:18:17 +02:00
parent 7b92a306f3
commit ed17d84da4

View File

@@ -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);
// }
}