Exercises
Work on these exercises in your local copy of the csharp-web-dev-exercises repo. You were directed to fork and clone this repo earlier in the book. If you have not done so, do so now.
Earlier in the chapter, we instantiated an object of the Car
class called test_car
.
Be sure to take note of the values of the make
, model
, gasTankSize
, and milesPerGallon
fields!
Having a note you can quickly reference of how big the gas tank is will help you decide on values to use in your tests!
TestGasTankAfterDriving()
Add a test for the third TODO, “GasTankLevel is accurate after driving within tank range”.
Your test must use the
Car
methodDrive()
test_car.Drive(50);
With a value of
50
miles passed intoDrive()
, we expecttest_car
to have aGasTankLevel
of9
.Assert.AreEqual(9, test_car.GasTankLevel, .001);
TestGasTankAfterExceedingTankRange()
Add a test for the fourth TODO, “GasTankLevel is accurate after attempting to drive past tank range”.
You’re on your own for this one. You’ll need to simulate the
Car
traveling farther than it’sgasTankLevel
allows.
TestGasOverfillException()
The test for our last TODO is a little different. We are going to perform an action on our car object, and we are expecting the object to throw an error. In this case, we are going to attempt to add gas to our car that exceeds the gas tank size.
First, we’ll add our
[TestMethod]
annotation to tell MSTest this is a test.//TODO: can't have more gas than tank size, expect an exception [TestMethod] public void TestGasOverfillException() { }
Now we need to tell MSTest the test passes if an exception is thrown. We will use a new attribute
[ExpectedException]
.[ExpectedException(typeof(ArgumentOutOfRangeException))]
Update the
Car
class to include anAddGas()
method.public void AddGas(double gas) { GasTankLevel += gas; }
Back in
CarTests
, implement the newAddGas()
method and aAssert.Fail()
scenario.test_car.AddGas(5); Assert.Fail("Shouldn't get here, car cannot have more gas in tank than the size of the tank");
Run the test. It should fail! In the output log, we can see our
Assert.Fail()
statement about not being able to add more gas printed out.We need to refactor
Car
to throw an exception when too much gas is added to the tank. Find theAddGas()
method and modify it by adding the following code in the appropriate place.if (GasTankLevel > GasTankSize) { throw new ArgumentOutOfRangeException("Can't exceed tank size"); }
Now, run the test - it should pass!