Question: Write a unit test for addInventory ( ) , which has an error. Call redSweater.addInventory ( ) with argument sweaterShipment. Print the shown error if
Write a unit test for addInventory which has an error. Call redSweater.addInventory with argument sweaterShipment. Print the shown error if the subsequent quantity is incorrect. Sample output for failed unit test given initial quantity is and sweaterShipment is :
Beginning tests.
UNIT TEST FAILED: addInventory
Tests complete.
Note: UNIT TEST FAILED is preceded by spaces.
Learn how our autograder works
I Code from file InventoryTag. java
public class Inventoryag
private int quantityRemaining;
public InventoryTag
quantityRemaining ;
public int getQuantityRemaining
return quantityRemaining;
public void addInventoryint numItems
if numitems
quantityRemaining quantityRemaining numItems;
Feedback?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
