Skip to content

Commit 53cbe2f

Browse files
committed
Add failing and skipped test
1 parent 583674f commit 53cbe2f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

test/TestBuildingBlocks/DummyTest.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
using FluentAssertions;
12
using Xunit;
23

34
namespace TestBuildingBlocks;
@@ -10,4 +11,16 @@ public void Empty()
1011
// This dummy test exists solely to suppress the warning
1112
// during test runs that no tests were found in this project.
1213
}
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+
true.Should().BeFalse();
25+
}
1326
}

0 commit comments

Comments
 (0)