113k views
2 votes
A video application has the following requirement: The application shall allow playing a video on the following display resolution:

1. 640x480
2. 1280x720
3. 1600x1200
4. 1920x1080
Which of the following list of test cases is a result of applying the equivalence partitioning test technique to test this requirement?
A. Verify that the application can play a video on a display of size 1920x1080 (1 test case)
B. Verify that the application can play a video on a display of size 640x480 and 1920x1080 (2 test cases)
C. Verify that the application can play a video on each of the display sizes in the requirement(4 test cases)
D. Verify that the application can play a video on any one of the display sizes in the requirement (1 test case)

User VityaSchel
by
7.8k points

1 Answer

4 votes

Final answer:

The correct application of the equivalence partitioning test technique to the requirement would be option C, which involves verifying that the video application can play videos on each of the listed display sizes, effectively testing four partitions corresponding to the four resolutions.

Step-by-step explanation:

The equivalence partitioning test technique is a black box testing method that divides input data of software into partitions of equivalent data from which test cases can be derived. The basic idea behind this technique is that if a software works correctly for a representative value in one partition, it should work for all values in that partition.

Therefore, to apply the equivalence partitioning test technique to the requirement stated, test cases should be designed to cover each of the specified resolutions, ensuring that they are representative of the partition they belong to. Option C: Verify that the application can play a video on each of the display sizes in the requirement (4 test cases) effectively covers this requirement, as it tests each of the mentioned display resolutions (640x480, 1280x720, 1600x1200, 1920x1080), which can be considered as separate equivalence partitions.

User Sruthi
by
8.9k points