@Test
 public void testGetSetSeen() {
   Match match = new Match(5, "gNaam", "MgNaam", false, true);
   match.setSeen(true);
   assertTrue(match.isSeen());
 }