Пример #1
0
        public void PizzaStoreCannotHaveTwoInventoryItemWIthSameName()
        {
            //Arrange
            PizzaStore newPizzaStore = new PizzaStore();

            //Act
            newPizzaStore.AddInventoryItem("", 1);

            //Assert
            Assert.Throws <ArgumentException>(() => newPizzaStore.AddInventoryItem("", 1));
        }
Пример #2
0
        public void PizzaStoreCannotHaveNullInventoryItemName()
        {
            //Arrange
            PizzaStore newPizzaStore = new PizzaStore();

            //Act and Assert
            Assert.Throws <ArgumentNullException>(() => newPizzaStore.AddInventoryItem(null, 1));
        }