Ajout de test
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
dc5993dbb0
commit
853257491b
@ -0,0 +1,16 @@
|
||||
using Model;
|
||||
|
||||
namespace TestsUnitaires
|
||||
{
|
||||
public class TU_Compte
|
||||
{
|
||||
[Fact]
|
||||
public void Ctor_Compte()
|
||||
{
|
||||
Compte c = new Compte("Crédit Agricole", 20000);
|
||||
Assert.NotNull(c);
|
||||
Assert.Equal("Crédit Agricole", c.Nom);
|
||||
Assert.Equal(20000, c.Solde);
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
namespace TestsUnitaires
|
||||
{
|
||||
public class UnitTest1
|
||||
{
|
||||
[Fact]
|
||||
public void Test1()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in new issue