Verify calculation method using a stub object
Preconditions (2)
Step 1: Create a stub object that returns a fixed multiplier value of 5
Step 2: Inject the stub object into the Calculator class
Step 3: Call the calculate method with input value 10
Step 4: Observe the returned result
✅ Expected Result: The calculate method returns 50 (10 multiplied by 5 from the stub)