コード例 #1
0
 public void testNotExists() throws SQLException {
   boolean dayExists = dayManager.exists(110L);
   Assert.assertFalse(dayExists);
 }
コード例 #2
0
 public void testExists() throws SQLException {
   boolean dayExists = dayManager.exists(101L);
   Assert.assertTrue(dayExists);
 }