We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bc8870 commit eef2ba9Copy full SHA for eef2ba9
Fakes/OpenActive.FakeDatabase.NET.Tests/FakeBookingSystemTest.cs
@@ -4,13 +4,18 @@
4
using System;
5
using ServiceStack.OrmLite;
6
using System.Data;
7
+using Microsoft.Extensions.Logging.Abstractions;
8
9
namespace OpenActive.FakeDatabase.NET.Test
10
{
11
public class FakeBookingSystemTest
12
13
private readonly ITestOutputHelper output;
- private readonly FakeBookingSystem fakeBookingSystem = new FakeBookingSystem(false);
14
+ private readonly FakeBookingSystem fakeBookingSystem = new FakeBookingSystem
15
+ (
16
+ false,
17
+ new NullLogger<FakeBookingSystem>()
18
+ );
19
20
public FakeBookingSystemTest(ITestOutputHelper output)
21
0 commit comments