English, asked by kartik4776, 10 months ago

The minimum number of test inputs required to test the execution of a program is determined by

Answers

Answered by ankurbadani84
2

Answer :- The minimum number of test cases to test complete execution of program is determine if test cases covers every piece of code being written.

To determine this test cases should be such that every IF and THEN clause are getting executed via test cases. Safe way to calculate will be to count total number of IFs in the program. Let us say there are x number of IF , then for each IF there will be x ELSE so in total you will need 1 + x number of test cases to test the program completely.

Similar questions