diff --git a/NUnitTestProject1/NUnitTestProject1.csproj b/NUnitTestProject1/NUnitTestProject1.csproj
deleted file mode 100644
index 580d479..0000000
--- a/NUnitTestProject1/NUnitTestProject1.csproj
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- netcoreapp3.0
-
- false
-
-
-
-
-
-
-
-
-
diff --git a/NUnitTestProject1/UnitTest1.cs b/NUnitTestProject1/UnitTest1.cs
deleted file mode 100644
index d2d4840..0000000
--- a/NUnitTestProject1/UnitTest1.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using NUnit.Framework;
-
-namespace NUnitTestProject1
-{
- public class Tests
- {
- [SetUp]
- public void Setup()
- {
- }
-
- [Test]
- public void Test1()
- {
- Assert.Pass();
- }
- }
-}
\ No newline at end of file
diff --git a/ProjectUnitaire/ProjectUnitaire.csproj b/ProjectUnitaire/ProjectUnitaire.csproj
deleted file mode 100644
index f07c934..0000000
--- a/ProjectUnitaire/ProjectUnitaire.csproj
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
- Debug
- AnyCPU
- {FA55654F-097D-4E83-809E-A2C7E46563A4}
- Library
- Properties
- ProjectUnitaire
- ProjectUnitaire
- v4.7.2
- 512
- {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
- 15.0
- $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
- $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages
- False
- UnitTest
-
-
-
-
- true
- full
- false
- bin\Debug\
- DEBUG;TRACE
- prompt
- 4
-
-
- pdbonly
- true
- bin\Release\
- TRACE
- prompt
- 4
-
-
-
- ..\packages\MSTest.TestFramework.1.3.2\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll
-
-
- ..\packages\MSTest.TestFramework.1.3.2\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
-
-
-
-
-
-
-
-
-
-
-
-
-
- {8de6c881-ff77-4cc4-b8c4-cdedd9ab13b3}
- TheGameExtreme
-
-
-
-
-
-
- Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}.
-
-
-
-
-
-
\ No newline at end of file
diff --git a/ProjectUnitaire/Properties/AssemblyInfo.cs b/ProjectUnitaire/Properties/AssemblyInfo.cs
deleted file mode 100644
index 9cc3533..0000000
--- a/ProjectUnitaire/Properties/AssemblyInfo.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System.Reflection;
-using System.Runtime.CompilerServices;
-using System.Runtime.InteropServices;
-
-[assembly: AssemblyTitle("ProjectUnitaire")]
-[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
-[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("ProjectUnitaire")]
-[assembly: AssemblyCopyright("Copyright © 2019")]
-[assembly: AssemblyTrademark("")]
-[assembly: AssemblyCulture("")]
-
-[assembly: ComVisible(false)]
-
-[assembly: Guid("fa55654f-097d-4e83-809e-a2c7e46563a4")]
-
-// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/ProjectUnitaire/TestUnit.cs b/ProjectUnitaire/TestUnit.cs
deleted file mode 100644
index c3ffdcb..0000000
--- a/ProjectUnitaire/TestUnit.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Collections.Generic;
-using Microsoft.VisualStudio.TestTools.UnitTesting;
-using TheGameExtreme.model;
-using TheGameExtreme.model.manager;
-using TheGameExtreme.viewmodel;
-
-namespace ProjectUnitaire
-{
- [TestClass]
- public class TestUnit
- {
- [TestMethod]
- public void EndTurnTest()
- {
-
- }
- }
-}
diff --git a/ProjectUnitaire/packages.config b/ProjectUnitaire/packages.config
deleted file mode 100644
index 2f7c5a1..0000000
--- a/ProjectUnitaire/packages.config
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/UnitTestProjectTheGame/UnitTest1.cs b/UnitTestProjectTheGame/UnitTest1.cs
deleted file mode 100644
index 0c3552b..0000000
--- a/UnitTestProjectTheGame/UnitTest1.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Microsoft.VisualStudio.TestTools.UnitTesting;
-using TheGameExtreme.model.manager;
-
-namespace UnitTestProjectTheGame
-{
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void TestMethod1()
- {
- GameManager g1 = new SoloGameManager();
- }
- }
-}
diff --git a/UnitTestProjectTheGame/UnitTestProjectTheGame.csproj b/UnitTestProjectTheGame/UnitTestProjectTheGame.csproj
deleted file mode 100644
index 8ae4c5b..0000000
--- a/UnitTestProjectTheGame/UnitTestProjectTheGame.csproj
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- netcoreapp3.0
-
- false
-
-
-
-
-
-
-
-
-
-
diff --git a/UnitTestTheGame/Program.fs b/UnitTestTheGame/Program.fs
deleted file mode 100644
index 0695f84..0000000
--- a/UnitTestTheGame/Program.fs
+++ /dev/null
@@ -1 +0,0 @@
-module Program = let [] main _ = 0
diff --git a/UnitTestTheGame/Tests.fs b/UnitTestTheGame/Tests.fs
deleted file mode 100644
index 2627b17..0000000
--- a/UnitTestTheGame/Tests.fs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace UnitTestTheGame
-
-open System
-open Microsoft.VisualStudio.TestTools.UnitTesting
-
-[]
-type TestClass () =
-
- []
- member this.TestMethodPassing () =
- Assert.IsTrue(true);
diff --git a/UnitTestTheGame/UnitTestTheGame.fsproj b/UnitTestTheGame/UnitTestTheGame.fsproj
deleted file mode 100644
index de9c46d..0000000
--- a/UnitTestTheGame/UnitTestTheGame.fsproj
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- netcoreapp3.0
-
- false
- false
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-