Question: Write a unit test for addInventory(), which has an error. Call redSweater.addInventory() with parameter sweaterShipment. Print the shown error if the subsequent quantity is incorrect.

Write a unit test for addInventory(), which has an error. Call redSweater.addInventory() with parameter sweaterShipment. Print the shown error if the subsequent quantity is incorrect. Sample output for failed unit test given initial quantity is 10 and sweaterShipment is 50:

Beginning tests. UNIT TEST FAILED: addInventory() Tests complete. 

Note: UNIT TEST FAILED is preceded by 3 spaces.

Program:

#include using namespace std;

class InventoryTag { public: InventoryTag(); int getQuantityRemaining() const; void addInventory(int numItems);

private: int quantityRemaining; };

InventoryTag::InventoryTag() { quantityRemaining = 0; }

int InventoryTag::getQuantityRemaining() const { return quantityRemaining; }

void InventoryTag::addInventory(int numItems) { if (numItems > 10) { quantityRemaining = quantityRemaining + numItems; } }

int main() { InventoryTag redSweater; int sweaterShipment; int sweaterInventoryBefore;

sweaterInventoryBefore = redSweater.getQuantityRemaining(); cin >> sweaterShipment;

cout << "Beginning tests." << endl;

// FIXME add unit test for addInventory

/* Your solution goes here */

cout << "Tests complete." << endl;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!