Example #1
0
        public void Add_item_in_inventory()
        {
            int i = 0;
            int j = 0;

            var    InventoryItem = new InventoryItem();
            string ItemName      = "Steel helmet";

            string [] Inventory = InventoryItem.AddItemToInventory(i, j);
            Assert.That(Inventory[0], Is.SameAs(ItemName));
        }