Final answer:
Using JUnit, you can develop a set of test cases for the VendingMachine.java code to achieve 100% statement coverage and at least 90% decision coverage.
Step-by-step explanation:
To achieve statement and decision code coverage for the VendingMachine.java code, you can use JUnit as a tool. Here is an example of a set of test cases:
- Test Case 1: Input = 20 (Candy), Expected Output = Candy
- Test Case 2: Input = 25 (Coke), Expected Output = Coke
- Test Case 3: Input = 45 (Coffee), Expected Output = Coffee
- Test Case 4: Input = 10 (Insufficient funds for any product), Expected Output = Not enough funds to buy any product. Amount necessary: $0.20. Other products to purchase: Coke ($0.05), Coffee ($0.25)
By executing these test cases, you can observe the code coverage of your test cases. The goal is to reach 100% statement coverage and at least 90% decision coverage. Remember to test all decisions except the False decision for line 32 (input < 45) to achieve the desired decision coverage.