Ejemplo n.º 1
0
 @Test
 public void testGetSetSeen() {
   Match match = new Match(5, "gNaam", "MgNaam", false, true);
   match.setSeen(true);
   assertTrue(match.isSeen());
 }
Ejemplo n.º 2
0
 @Test
 public void testConstructorSeen() {
   Match test = create();
   assertEquals(false, test.isSeen());
 }