Using only NUnitLite 1's Assert.AreEqual method, write tests for the Account class that cover the following cases:
- The Deposit and Withdraw methods will not accept negative numbers.
- Account cannot overstep its overdraft limit.
- The Deposit and Withdraw methods will deposit or withdraw the correct amount, respectively.
- The Withdraw and Deposit methods return the correct results.
public class Account
{
public double Balance { get; private set; }
public double OverdraftLimit { get; private set; }
public Account(double overdraftLimit)
{
this.OverdraftLimit = overdraftLimit > 0 ? overdraftLimit : 0;
this.Balance = 0;
}
public bool Deposit(double amount)
{
if (amount >= 0)
{
this.Balance += amount;
return true;
}
return false;
}
public bool Withdraw(double amount)
{
if (this.Balance - amount >= -this.OverdraftLimit && amount >= 0)
{
this.Balance -= amount;
return true;
}
return false;
}
}
Each of the test case methods should be in the Tester class and have the Test attribute.
- The Deposit and Withdraw methods will not accept negative numbers: Wrong answer
- Account cannot overstep its overdraft limit: Wrong answer
- The Deposit and Withdraw methods will deposit or withdraw the correct amount, respectively: Wrong answer
- The Withdraw and Deposit methods return the correct results: Wrong answer
Tags
C#Would you like to see our other questions?
We have 1000+ premium hand-crafted questions for 160+ job skills and 20+ coding languages. We prefer questions with small samples of actual work over academic problems or brain teasers.
Visit our question libraryPrivate Concierge
Send us an email with an explanation of your testing needs and a list of candidates. We will create an appropriate test, invite your candidates, review their results, and send you a detailed report.
Contact Private ConciergeWould you like to see our tests? The following tests contain C# related questions:
On the TestDome Blog
Screening Applicants: The Good, the Bad and the Ugly
Since we’re all biased and we use incorrect proxies, why not just outsource hiring to experts or recruitment agencies? After all, they’ve been screening people for many years, so they must know how to do it right?
Not really. I was surprised to discover that many experts disagree with each other. Everybody praises their pet method and criticizes the others. Many of these methods look legitimate, but are based on...