Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: add AddParallelConstraint method and update API for multiple co…
…nstraints support
  • Loading branch information
thomhurst committed Sep 19, 2025
commit fdf8db755a9d80bd49be4aa667e64da357c42919
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,13 @@ namespace
public string TestName { get; }
public void AddArgumentDisplayFormatter(.ArgumentDisplayFormatter formatter) { }
public void AddCategory(string category) { }
public void AddParallelConstraint(. constraint) { }
public void AddProperty(string key, string value) { }
public string GetDisplayName() { }
public void SetDisplayName(string displayName) { }
public void SetDisplayNameFormatter( formatterType) { }
[("Use AddParallelConstraint to support multiple constraints. This method replaces a" +
"ll existing constraints.")]
public void SetParallelConstraint(. constraint) { }
public void SetPriority(. priority) { }
public void SetRetryLimit(int retryLimit) { }
Expand Down Expand Up @@ -1246,7 +1249,10 @@ namespace
public .CancellationTokenSource? LinkedCancellationTokens { get; set; }
public object Lock { get; }
public .<string, object?> ObjectBag { get; }
[("Use ParallelConstraints collection instead. This property is maintained for backw" +
"ard compatibility.")]
public .? ParallelConstraint { get; set; }
public .<.> ParallelConstraints { get; }
public .? ParallelLimiter { get; }
public .TestPhase Phase { get; set; }
public bool ReportResult { get; set; }
Expand All @@ -1266,6 +1272,7 @@ namespace
public static string WorkingDirectory { get; set; }
public void AddArtifact(.Artifact artifact) { }
public void AddLinkedCancellationToken(.CancellationToken cancellationToken) { }
public void AddParallelConstraint(. constraint) { }
public string GetDisplayName() { }
public new string GetErrorOutput() { }
public string GetOutput() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,13 @@ namespace
public string TestName { get; }
public void AddArgumentDisplayFormatter(.ArgumentDisplayFormatter formatter) { }
public void AddCategory(string category) { }
public void AddParallelConstraint(. constraint) { }
public void AddProperty(string key, string value) { }
public string GetDisplayName() { }
public void SetDisplayName(string displayName) { }
public void SetDisplayNameFormatter( formatterType) { }
[("Use AddParallelConstraint to support multiple constraints. This method replaces a" +
"ll existing constraints.")]
public void SetParallelConstraint(. constraint) { }
public void SetPriority(. priority) { }
public void SetRetryLimit(int retryLimit) { }
Expand Down Expand Up @@ -1246,7 +1249,10 @@ namespace
public .CancellationTokenSource? LinkedCancellationTokens { get; set; }
public object Lock { get; }
public .<string, object?> ObjectBag { get; }
[("Use ParallelConstraints collection instead. This property is maintained for backw" +
"ard compatibility.")]
public .? ParallelConstraint { get; set; }
public .<.> ParallelConstraints { get; }
public .? ParallelLimiter { get; }
public .TestPhase Phase { get; set; }
public bool ReportResult { get; set; }
Expand All @@ -1266,6 +1272,7 @@ namespace
public static string WorkingDirectory { get; set; }
public void AddArtifact(.Artifact artifact) { }
public void AddLinkedCancellationToken(.CancellationToken cancellationToken) { }
public void AddParallelConstraint(. constraint) { }
public string GetDisplayName() { }
public new string GetErrorOutput() { }
public string GetOutput() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -507,10 +507,13 @@ namespace
public string TestName { get; }
public void AddArgumentDisplayFormatter(.ArgumentDisplayFormatter formatter) { }
public void AddCategory(string category) { }
public void AddParallelConstraint(. constraint) { }
public void AddProperty(string key, string value) { }
public string GetDisplayName() { }
public void SetDisplayName(string displayName) { }
public void SetDisplayNameFormatter( formatterType) { }
[("Use AddParallelConstraint to support multiple constraints. This method replaces a" +
"ll existing constraints.")]
public void SetParallelConstraint(. constraint) { }
public void SetPriority(. priority) { }
public void SetRetryLimit(int retryLimit) { }
Expand Down Expand Up @@ -1170,7 +1173,10 @@ namespace
public .CancellationTokenSource? LinkedCancellationTokens { get; set; }
public object Lock { get; }
public .<string, object?> ObjectBag { get; }
[("Use ParallelConstraints collection instead. This property is maintained for backw" +
"ard compatibility.")]
public .? ParallelConstraint { get; set; }
public .<.> ParallelConstraints { get; }
public .? ParallelLimiter { get; }
public .TestPhase Phase { get; set; }
public bool ReportResult { get; set; }
Expand All @@ -1189,6 +1195,7 @@ namespace
public static string WorkingDirectory { get; set; }
public void AddArtifact(.Artifact artifact) { }
public void AddLinkedCancellationToken(.CancellationToken cancellationToken) { }
public void AddParallelConstraint(. constraint) { }
public string GetDisplayName() { }
public new string GetErrorOutput() { }
public string GetOutput() { }
Expand Down
Loading