| 123456789101112131415161718192021222324252627282930 |
- import static org.junit.Assert.*;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
-
- /**
- * The test class DiceTest.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class DiceTest
- {
-
- @Before
- public void setUp()
- {
- Dice dice = new Dice();
- Dice dice1 = new Dice();
- }
-
- @Test
- public void testOf1()
- {
-
- Assert.assertEquals(dice);
- Assert.assertEquals(dice1);
- }
- }
|