Browse Source

refactoring: Funktiosname gekürzt

remotes/origin/homan
fdai7892 11 months ago
parent
commit
847b834e03
  1. 4
      src/test/test_duellist_spielesammlung_projekt.c

4
src/test/test_duellist_spielesammlung_projekt.c

@ -8,7 +8,7 @@ void setUp(void) {}
void tearDown(void) {} void tearDown(void) {}
void test_coinflip_player_x_starts(void) {
void test_coinflip_x_starts(void) {
// Arrange // Arrange
TicTacToeGame game; TicTacToeGame game;
@ -20,7 +20,7 @@ void test_coinflip_player_x_starts(void) {
TEST_ASSERT_TRUE(game.currentPlayer == PLAYER_X || game.currentPlayer == PLAYER_O); TEST_ASSERT_TRUE(game.currentPlayer == PLAYER_X || game.currentPlayer == PLAYER_O);
} }
void test_coinflip_player_o_starts(void) {
void test_coinflip_o_starts(void) {
// Arrange // Arrange
TicTacToeGame game; TicTacToeGame game;

Loading…
Cancel
Save