You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
322 B

3 years ago
3 years ago
  1. package de.fd.fh.server.game;
  2. import org.junit.jupiter.api.Test;
  3. import static org.junit.jupiter.api.Assertions.*;
  4. class GameServiceTest
  5. {
  6. @Test
  7. void testCreateGame()
  8. {
  9. final Game game = new Game();
  10. final Game result = new GameService().createGame();
  11. assertNotNull(result);
  12. }
  13. }