public void enteryQty_changeProductQty()
        {
            // arange
            int expected = 5;
            // action
            int actual = new StockMaintenance().enterQty(5);

            // assert
            Assert.Equal(expected, actual);
        }
Exemple #2
0
 public ProductMaintenance(StockInformation stockInfo)
 {
     _stockMaintenance = new StockMaintenance(stockInfo);
 }