Skip to content

Commit 5ecdcbb

Browse files
committed
Accept license
1 parent 06e37fa commit 5ecdcbb

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using FluentAssertions.DataSets.Specs;
2+
using FluentAssertions.Extensibility;
3+
4+
[assembly: AssertionEngineInitializer(
5+
typeof(AcceptLicense),
6+
nameof(AcceptLicense.Initialize))]
7+
8+
namespace FluentAssertions.DataSets.Specs;
9+
10+
public static class AcceptLicense
11+
{
12+
// ReSharper disable once UnusedMember.Global
13+
#pragma warning disable CA1822
14+
public static void Initialize()
15+
#pragma warning restore CA1822
16+
{
17+
License.Accepted = true;
18+
}
19+
}

0 commit comments

Comments
 (0)