| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
-
-
- import static org.junit.Assert.*;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- /**
- * The test class CalendarGraphicTest.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class CalendarGraphicTest
- {
- /**
- * Default constructor for test class CalendarGraphicTest
- */
- public CalendarGraphicTest()
- {
- }
-
- /**
- * Sets up the test fixture.
- *
- * Called before every test case method.
- */
- @Before
- public void setUp()
- {
- }
-
- /**
- * Tears down the test fixture.
- *
- * Called after every test case method.
- */
- @After
- public void tearDown()
- {
- }
-
- @Test
- public void test1()
- {
- CalendarGraphic calendar2 = new CalendarGraphic(4, 7, 2018);
- }
-
- @Test
- public void test2()
- {
- CalendarGraphic calendar1 = new CalendarGraphic(25, 12, 2018);
- }
- }
-
-
|