Verify that a function correctly calculates the total price including tax
Preconditions (3)
Step 1: Call calculate_total_price with price=100.0 and tax_rate=0.1
Step 2: Call calculate_total_price with price=50.0 and tax_rate=0.2
Step 3: Call calculate_total_price with price=0 and tax_rate=0.15
✅ Expected Result: The function returns 110.0, 60.0, and 0.0 respectively for the three calls