Please answer the question below: (the above question is alreadyanswered)
Write unit tests for the above class. Be sure to have 100% codecoverage in your tests.
Answer of first two parts is:
public class Cup { private int _maxCapacityInML; private int _actualLiquidContentsInML; public Cup(int maxCapacityInML) { this._maxCapacityInML = maxCapacityInML; } public int getActualLiquidContentsInML() { return
OR
OR