Skip to content

Commit

Permalink
Add an empty test to avoid CI failing because in a *Tests project the…
Browse files Browse the repository at this point in the history
…re are no tests
  • Loading branch information
mauroservienti committed Sep 4, 2023
1 parent 3af88ed commit 0e775a8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/NServiceBus.AcceptanceTests.Primitives/EmptyTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace NServiceBus.AcceptanceTests.Versioning
{
using NUnit.Framework;

class EmptyTest
{
[Test]
public void To_prevent_CI_from_failing_because_a_tests_project_contains_no_tests() => Assert.Ignore();
}
}

0 comments on commit 0e775a8

Please sign in to comment.