end of day commit

This commit is contained in:
David Rodenkirchen
2026-02-02 22:01:38 +01:00
parent 02658aa049
commit fffb607b16
6 changed files with 323 additions and 41 deletions
+3 -3
View File
@@ -16,9 +16,9 @@ class TournamentDomainTests(unittest.TestCase):
self.initial_status = TournamentStatus.CLOSED
# Generic Participants
self.participant_a = Participant(1, "CoolUserName", ParticipantType.PLAYER)
self.participant_b = Participant(2, "CrazyUserName", ParticipantType.PLAYER)
self.participant_c = Participant(3, "FunnyUserName", ParticipantType.PLAYER)
self.participant_a = Participant(1, ParticipantType.PLAYER)
self.participant_b = Participant(2, ParticipantType.PLAYER)
self.participant_c = Participant(3, ParticipantType.PLAYER)
def test_tournament_without_participants_can_not_be_started(self) -> None:
tournament_under_test = generate_new_tournament(self.name, self.description, self.game_title, self.format_, self.start_time, 32, self.initial_status)