reqnroll

This configuration section contains settings related to synchronizing Reqnroll projects. These settings are only required for the legacy synchronizing automated test cases

The following example shows the available options within this section.

{
  ...
  "reqnroll": {
    "scenarioOutlineAutomationWrappers": "iterateThroughExamples",
    "wrapperMethodPrefix": "_SpecSyncWrapper_",
    "wrapperMethodCategory": "SpecSyncWrapper"
  },
  ...
}

Settings

Setting
Description
Default

scenarioOutlineAutomationWrappers

Specifies how automation wrapper methods should be generated for synchronizing scenario outlines to automated test cases. Available options: iterateThroughExamples. (Default: iterateThroughExamples)

  • iterateThroughExamples -- the generated wrapper method iterates through the examples and runs the test for each. A failure of an iteration does not block the remaining iterations. Running the test cases through this wrapper in Azure DevOps generates a single entry in the report, but the details of the entry contain all executed data set.

iterateThroughExamples

wrapperMethodPrefix

The method prefix to be used for the generated automation wrapper methods.

_SpecSyncWrapper_

wrapperMethodCategory

The test category (trait) be added for the generated automation wrapper methods.

SpecSyncWrapper

Configuration reference

Last updated

Was this helpful?