public void enteryQty_changeProductQty() { // arange int expected = 5; // action int actual = new StockMaintenance().enterQty(5); // assert Assert.Equal(expected, actual); }
public ProductMaintenance(StockInformation stockInfo) { _stockMaintenance = new StockMaintenance(stockInfo); }