Skip to content

Commit ad4da67

Browse files
test: Remove unnecessary TestLogger in FlagdConfig tests (#412)
Signed-off-by: Kyle Julian <[email protected]>
1 parent 7915841 commit ad4da67

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

test/OpenFeature.Contrib.Providers.Flagd.Test/FlagdConfigTest.cs

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using Microsoft.Extensions.Logging;
32
using Microsoft.Extensions.Logging.Abstractions;
43
using Microsoft.Extensions.Logging.Testing;
54
using Xunit;
@@ -213,21 +212,3 @@ public void TestFlagdConfigBuilder()
213212
Assert.Equal(logger, config.Logger);
214213
}
215214
}
216-
217-
public class TestLogger : ILogger
218-
{
219-
public IDisposable BeginScope<TState>(TState state) where TState : notnull
220-
{
221-
throw new NotImplementedException();
222-
}
223-
224-
public bool IsEnabled(LogLevel logLevel)
225-
{
226-
throw new NotImplementedException();
227-
}
228-
229-
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
230-
{
231-
throw new NotImplementedException();
232-
}
233-
}

0 commit comments

Comments
 (0)