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.
mastermind/Sources/UnitTesting/ReglesDifficilesUT.cs

22 lines
677 B

using CoreLibrary.Regles;
using Xunit;
namespace UnitTesting
{
public class ReglesDifficilesUT
{
[Fact]
public void Test()
{
Assert.Equal(2, new ReglesDifficiles().Indice);
Assert.NotNull(new ReglesDifficiles().Nom);
Assert.NotNull(new ReglesDifficiles().Description);
Assert.Equal(2, new ReglesDifficiles().NbJoueurs);
Assert.Equal(12, new ReglesDifficiles().NbTour);
Assert.Equal(6, new ReglesDifficiles().TailleCode);
Assert.True(new ReglesDifficiles().Equals(new ReglesDifficiles()));
new ReglesDifficiles().GetHashCode();
}
}
}