ActTimeTest.java 369 B

12345678910111213141516
  1. package agenda;
  2. import junit.framework.TestCase;
  3. public class ActTimeTest extends TestCase{
  4. @org.junit.Before
  5. public void setUp() throws Exception {
  6. }
  7. @org.junit.Test
  8. public void testGetLength() throws Exception {
  9. ActTime actTime = new ActTime(2014, 5, 31, 21, 0, 2014, 5, 31, 23, 0);
  10. assert(actTime.getLength() == 120);
  11. }
  12. }