public void TestNegativeDebit()
 {
     Cashbox account = new Cashbox();
     account.Debit(-1);
 }
 public void TestGoToNegative()
 {
     Cashbox account = new Cashbox();
     account.Debit(5);
     Assert.AreEqual(account.Balance, -5);
 }