Testing Question
The development team has given you a module to test. The module’s described functionality is as follows:
The feature allows you to choose a number between 1 and 100 (inclusive). Once a number is selected:
• If the number is a multiple of three it should print "Roster" instead of the number.
• If the number is a multiple of five it should print "Virtual" instead of the number.
• If the number is a multiple of both three and five it should print "VirtualRoster".
• All other numbers should print the number itself.
Please list the test cases you feel would be needed to adequately cover the feature.
0