ut sur QuandSupprimerDernierJeton
continuous-integration/drone/push Build is passing Details

master
Céleste BARBOSA 11 months ago
parent f7a8666f95
commit 046e18043e

@ -176,7 +176,9 @@ namespace UnitTesting
partie.DemanderJeton += (sender, e) => partie.DemanderJeton += (sender, e) =>
{ {
return e.Indice == 0 || appele ? new Jeton() : null; if (e.Indice == 0 || appele)
return new Jeton();
return null;
}; };
partie.SupprimerDernierJeton += (sender, e) => partie.SupprimerDernierJeton += (sender, e) =>
@ -186,7 +188,6 @@ namespace UnitTesting
partie.Jouer(); partie.Jouer();
Assert.True(appele); Assert.True(appele);
} }
} }

Loading…
Cancel
Save