parent
bb311054b2
commit
844e6a637a
@ -0,0 +1,15 @@
|
||||
using Model;
|
||||
|
||||
namespace Testeur
|
||||
{
|
||||
public class UnitTest1
|
||||
{
|
||||
[Fact]
|
||||
public void TestConstructeurGame()
|
||||
{
|
||||
Game G = new Game("Monopoly");
|
||||
Assert.NotNull(G);
|
||||
Assert.Equal("Monopoly",G.Name);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
global using Xunit;
|
Loading…
Reference in new issue