some code samples, various examples of simple modeling ideas and some minor algorithms.

DateTest.java 705B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import static org.junit.Assert.*;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. /**
  6. * The test class DateTest.
  7. *
  8. * @author (your name)
  9. * @version (a version number or a date)
  10. */
  11. public class DateTest
  12. {
  13. /**
  14. * Default constructor for test class DateTest
  15. */
  16. public DateTest()
  17. {
  18. }
  19. @Test
  20. public void testtoString(){
  21. }
  22. /**
  23. * Sets up the test fixture.
  24. *
  25. * Called before every test case method.
  26. */
  27. @Before
  28. public void setUp()
  29. {
  30. }
  31. /**
  32. * Tears down the test fixture.
  33. *
  34. * Called after every test case method.
  35. */
  36. @After
  37. public void tearDown()
  38. {
  39. }
  40. }