Rebuilds Suits and plans for Test Cases migrated using the WorkItemMigration
topOptions
Parameter | Type | Description | Default Value |
---|
Enabled | Boolean | If set to true then the processor will run. Set to false and the processor will not run. | missing XML code comments |
FilterCompleted | Boolean | missing XML code comments | missing XML code comments |
MigrationDelay | Int32 | ??Not sure what this does. Check code. | Not specified |
OnlyElementsWithTag | String | The tag name that is present on all elements that must be migrated. If this option isn’t present this processor will migrate all. | `String.Empty` |
RemoveAllLinks | Boolean | ??Not sure what this does. Check code. | Not specified |
RemoveInvalidTestSuiteLinks | Boolean | Indicates whether the configuration for node structure transformation should be taken from the common enricher configs. Otherwise the configuration elements below are used | Not specified |
SourceName | String | This is the IEndpoint that will be used as the source of the Migration. Can be null for a write only processor. | missing XML code comments |
TargetName | String | This is the IEndpoint that will be used as the Target of the Migration. Can be null for a read only processor. | missing XML code comments |
TestPlanIds | Int32[] | This flag filters all test plans and retains only the specified ones for migration. Pass the test plan IDs as an array. Example: “TestPlanIds”: [123, 456, 789] Works optimally when “TestPlanQuery” is set to null. | missing XML code comments |
TestPlanQuery | String | Filtering conditions to decide whether to migrate a test plan or not. When provided, this partial query is added after Select * From TestPlan Where when selecting test plans. Among filtering options, AreaPath , PlanName and PlanState are known to work. There is unfortunately no documentation regarding the available fields. | `String.Empty` |
topSamples
topSample
Sample
There is no sample, but you can check the classic below for a general feel.
topDefaults
Defaults
There are no defaults! Check the sample for options!
topClassic
Classic
{
"$type": "TfsTestPlansAndSuitesMigrationProcessorOptions",
"Enabled": false,
"OnlyElementsWithTag": null,
"TestPlanQuery": null,
"RemoveAllLinks": false,
"MigrationDelay": 0,
"RemoveInvalidTestSuiteLinks": false,
"FilterCompleted": false,
"TestPlanIds": [],
"SourceName": null,
"TargetName": null
}
top