public void testNotExists() throws SQLException { boolean dayExists = dayManager.exists(110L); Assert.assertFalse(dayExists); }
public void testExists() throws SQLException { boolean dayExists = dayManager.exists(101L); Assert.assertTrue(dayExists); }