You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
429 B
19 lines
429 B
using CoreLibrary.Manageurs;
|
|
using CoreLibrary.Persistance;
|
|
using Xunit;
|
|
|
|
namespace UnitTesting
|
|
{
|
|
public class ManagerUT
|
|
{
|
|
[Fact]
|
|
public void TestConstruteur()
|
|
{
|
|
IPersistance persistance = new PersistanceJSON();
|
|
Manageur manageur = new Manageur(persistance);
|
|
Assert.NotNull(manageur.Joueurs);
|
|
Assert.NotEmpty(manageur.Joueurs);
|
|
}
|
|
}
|
|
}
|