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 06e37fa commit 5ecdcbbCopy full SHA for 5ecdcbb
Tests/FluentAssertions.DataSets.Specs/AcceptLicense.cs
@@ -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