Complete the test plan below for the Python code shown in Figure 1.
Figure 1
valid_temp = False
while valid_temp == False:
temp = int(input("Enter storage temperature in Celsius (2 - 8): "))
if temp >= 2 and temp <= 8:
valid_temp = True
else:
print("Error: Temperature out of safe limits")
print("Temperature accepted")
| Test type | Test data | Expected result |
|---|---|---|
| Normal data | 5 | "Temperature accepted" message printed |
| Invalid data | ||
| Boundary data |