I have program but need to know how to write test plan 1. The program needs to c
ID: 3531635 • Letter: I
Question
I have program but need to know how to write test plan
1. The program needs to convert from celcius temperatures to fahrenheit temperatures.
2. The user should be able to enter temperatures containing fractional degrees (ie. 12.3)
3. The converted temperatures should be accurate to within 1/10th of a degree.
4. The user should be able to enter the number of temperatures to be converted up to a maximum of 10.
5. The output should be tabular with each row including the input and converted temperature.
Write a test plan to thoroughly test this program. The executable for this program is included in with this lab. You should have test cases which verify that the program does all of what is required in the problem specification above. You should also test to see how robust the program is, that is, how does it handle inputs outside the expected ranges.
Explanation / Answer
After writing the program, you can test it by
1. see output of degree 1.1 and 1.2 celcius (this checks 1/10th accuracy)
2. try entering negative input
3. try entering known outputs (e.g. 100c =212 F)
4. try entering more than 10 inputs
5. check table with this website:http://www.metric-conversions.org/temperature/celsius-to-fahrenheit-table.htm