public void TestThatNoArgConstructorHasNoItemsInTheInventory()
 {
    Inventory inventory = new Inventory();
    Assert.AreEqual(0, inventory.ItemCount);
 }