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 2b9f880 commit d028718Copy full SHA for d028718
Tests/AssemblyInitializers.cs
@@ -0,0 +1,8 @@
1
+[assembly: AssertionEngineInitializer(typeof(AssemblyInitializers), nameof(AssemblyInitializers.AcceptLicense))]
2
+
3
+namespace BoardGameGeek.Dungeon;
4
5
+public static class AssemblyInitializers
6
+{
7
+ public static void AcceptLicense() => License.Accepted = true;
8
+}
Tests/GlobalUsings.cs
@@ -1,7 +1,9 @@
global using System;
global using System.Diagnostics.CodeAnalysis;
+global using BoardGameGeek.Dungeon;
global using BoardGameGeek.Dungeon.Models;
global using FluentAssertions;
+global using FluentAssertions.Extensibility;
global using Microsoft.Extensions.Logging;
global using Serilog;
9
global using Serilog.Extensions.Logging;
0 commit comments