ActTimeTest.java 364 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(new Time(10, 10), new Time(10, 20));
  10. assert(actTime.getLength() == 10);
  11. }
  12. }