Skip to content

Commit 6ffc8b5

Browse files
committed
Re-enable [Ignore] attribute for specific tests
Uncommented the [Ignore] attribute for three test methods in StartJenkinsJobTests.cs: StartJenkinsJobTest, StartJenkinsJobNoWaitTest, and StartJenkinsJobNoParametersTest. These tests are now explicitly marked to be ignored during execution, likely due to the provided _ignoreMessage.
1 parent b744880 commit 6ffc8b5

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/G4.UnitTests/Plugins.Common/StartJenkinsJobTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public override void NewPluginTest()
3333
AssertPlugin<StartJenkinsJob>();
3434
}
3535

36-
//[Ignore(message: _ignoreMessage)]
36+
[Ignore(message: _ignoreMessage)]
3737
[TestMethod(displayName: "Verify that the StartJenkinsJob plugin starts a Jenkins job with issue and " +
3838
"project fields, waits for completion, and finishes without any exceptions.")]
3939
public void StartJenkinsJobTest()
@@ -65,7 +65,7 @@ public void StartJenkinsJobTest()
6565
Assert.IsFalse(exceptions.Any());
6666
}
6767

68-
//[Ignore(message: _ignoreMessage)]
68+
[Ignore(message: _ignoreMessage)]
6969
[TestMethod(displayName: "Verify that the StartJenkinsJob plugin starts a Jenkins job without waiting " +
7070
"for completion and finishes without any exceptions.")]
7171
public void StartJenkinsJobNoWaitTest()
@@ -95,7 +95,7 @@ public void StartJenkinsJobNoWaitTest()
9595
Assert.IsFalse(exceptions.Any());
9696
}
9797

98-
//[Ignore(message: _ignoreMessage)]
98+
[Ignore(message: _ignoreMessage)]
9999
[TestMethod(displayName: "Verify that the StartJenkinsJob plugin fails when mandatory job parameters " +
100100
"are not provided.")]
101101
public void StartJenkinsJobNoParametersTest()

0 commit comments

Comments
 (0)