You are creating test cases for the following story, applying the ATDD approach. As a hotel owner I want to reserve all the rooms on a floor before moving to the next floor So I can maximize the efficiency of the housekeeping staff You have decided to apply equivalence partitioning to this requirement and have identified the following partitions for the occupancy of a floor: 0 | 1 - floor full | overbooked You also want to be sure that the software is usable by the staff and that it performs quickly in determining which floors have availability. Given this information, what should be the priority order for the tests you will design?
Antwortmöglichkeiten
Richtige Antwort
A, C: Planning; Execution
Erklärung
A is correct. This tests the valid scenarios first, then invalid (overbooked), then the non-functional tests. #30 A metric that tracks the number of test cases passed is gathered during which activity in the test process? a. Planning b. Implementation c. Execution d. Reporting C is correct. Test execution metrics are gathered during the Test Execution activity. These metrics are used in reporting.