Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ee5c3a7

Browse files
authoredMar 10, 2025··
Update TfsTestPlansAndSuitesMigrationProcessorOptions.cs
1 parent d996f9b commit ee5c3a7

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎src/MigrationTools.Clients.TfsObjectModel/Processors/TfsTestPlansAndSuitesMigrationProcessorOptions.cs

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using MigrationTools.Enrichers;
33
using MigrationTools.Processors;
44
using MigrationTools.Processors.Infrastructure;
5+
using System;
56

67
namespace MigrationTools._EngineV1.Configuration.Processing
78
{
@@ -43,6 +44,12 @@ public class TfsTestPlansAndSuitesMigrationProcessorOptions : ProcessorOptions
4344

4445
public bool FilterCompleted { get; set; }
4546

47+
/// <summary>
48+
/// 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]
49+
/// Works optimally when "TestPlanQuery" is set to null.
50+
/// </summary>
51+
public int[] TestPlanIds { get; set; } = Array.Empty<int>();
52+
4653
public TfsTestPlansAndSuitesMigrationProcessorOptions()
4754
{
4855
MigrationDelay = 0;

0 commit comments

Comments
 (0)
Please sign in to comment.