Verify that method throws IllegalArgumentException for invalid input
Preconditions (2)
Step 1: Call calculateDiscount with a negative age value, e.g., -5
Step 2: Catch the exception thrown by the method
Step 3: Verify that the exception type is IllegalArgumentException
Step 4: Verify that the exception message contains 'Age cannot be negative'
✅ Expected Result: The method throws IllegalArgumentException with the correct message when called with negative age