From d8962f4cb16c2c8f443cd31201240635756ae0ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20LAVERGNE?= Date: Sat, 8 Jun 2024 22:31:16 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=96=20Suppression=20de=20deux=20tests=20q?= =?UTF-8?q?ui=20ne=20servaient=20plus?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/Trek-12/Tests/GameTests.cs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/source/Trek-12/Tests/GameTests.cs b/source/Trek-12/Tests/GameTests.cs index 97d388c..35b0a0b 100644 --- a/source/Trek-12/Tests/GameTests.cs +++ b/source/Trek-12/Tests/GameTests.cs @@ -473,25 +473,6 @@ public class GameTests } - [Fact] - public void DoesDeleteGame_ReallyDeleteGame() - { - Game game = new Game(); - Game game1 = new Game(); - game.AddGame(game); - game.AddGame(game1); - game.DeleteGame(); - Assert.DoesNotContain(game1, game.Games); - } - - - [Fact] - public void DoesDeleteGame_DoNotDeleteNoGame() - { - bool res = _game.DeleteGame(); - Assert.False(res); - } - [Fact] public void CanIModifyAPlayer() {