Exemple #1
0
 /**
  * Test method for {@link Main.Date#getMinutes()}.
  *
  * @throws ParseException
  */
 @Test
 public void testGetMinutes() throws ParseException {
   assertEquals(d.getMinutes(), 30);
 }
Exemple #2
0
 /**
  * Test method for {@link Main.Date#setMinutes(int)}.
  *
  * @throws ParseException
  */
 @Test
 public void testSetMinutes() throws ParseException {
   d.setMinutes(45);
   assertEquals(d.getMinutes(), 45);
 }