We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4399622 commit a2b5620Copy full SHA for a2b5620
1 file changed
test/TestBuildingBlocks/DummyTest.cs
@@ -1,3 +1,4 @@
1
+using FluentAssertions;
2
using Xunit;
3
4
namespace TestBuildingBlocks;
@@ -10,4 +11,16 @@ public void Empty()
10
11
// This dummy test exists solely to suppress the warning
12
// during test runs that no tests were found in this project.
13
}
14
+
15
+ [Fact]
16
+ public void FailAlways()
17
+ {
18
+ true.Should().BeFalse();
19
+ }
20
21
+ [Fact(Skip = "Test updated GHA")]
22
+ public void SkipAlways()
23
24
25
26
0 commit comments