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