public void Debit_15Solde5_Exc() { CompteBancaire cb = fausseDAL.RetournerCompteBancaire("MAERTE"); cb.Solde = 5; cb.Debiter(15); }
public void Debit_15Solde20_5() { CompteBancaire cb = fausseDAL.RetournerCompteBancaire("MAERTE"); cb.Debiter(15); Assert.AreEqual(5, cb.Solde); }
private static void exercice1() { CompteBancaire compteCourant = new CompteBancaire("Alexis Lapeze", 0, "euros"); compteCourant.Crediter(2000); compteCourant.Debiter(1000); Console.WriteLine(compteCourant.ToString()); }
private static void ex1() { CompteBancaire compteCourant = new CompteBancaire("Nicolas", 0, "euros"); compteCourant.Crediter(2000); compteCourant.Debiter(1000); Console.WriteLine(compteCourant.ToString()); }