QuestionQ20

Implementation and Deployment Strategies for Test Automation

How would a feature-toggle configuration be used?

  • A To identify the test data sets needed for a test suite.
  • B To identify a test environment configuration.
  • C To identify which test suites to execute.
  • D To identify which oracle to use for verification.
Explanation

A feature-toggle configuration records which features are currently enabled or disabled in the system under test. Automated test execution frameworks consult this configuration to decide which test suites apply to the current build, since suites covering a disabled feature would either fail spuriously or be irrelevant; the toggle state is therefore used to select which test suites to execute, not to pick test data, environment settings, or verification oracles.

Community Discussion

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