QuestionQ28

Advanced Data Manipulation

Given the following testing setup:

  • TestSetA contains TestCase1, TestCase2, and TestCase3.
  • TestCase1 is linked to TestDataQueue1, which contains 1 item.
  • TestCase2 is linked to TestDataQueue2, which contains 2 items.
  • TestCase3 is linked to TestDataQueue3, which contains 3 items.

How many test-case executions are generated when TestSetA is started?

  • A 0
  • B 1
  • C 3
  • D 6
Explanation

A test case linked to a test-data queue runs once for each item in that queue. The three test cases therefore generate 1, 2, and 3 executions respectively, for a total of 6.

Community Discussion

No comments yet. Be the first to start the discussion!