Skip to content

Commit 2c9007e

Browse files
committed
Make the class abstract
1 parent 9fda5a7 commit 2c9007e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/ServiceControl.Transports.Tests/FullEndpointTestFixture.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
using ServiceControl.Infrastructure;
88

99
[TestFixture]
10-
class FullEndpointTestFixture
10+
11+
abstract class FullEndpointTestFixture
1112
{
1213
[SetUp]
1314
public virtual async Task Setup()

src/ServiceControl.Transports.Tests/TransportTestFixture.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@
1818
using Transports;
1919

2020
[TestFixture]
21-
class TransportTestFixture
21+
22+
abstract class TransportTestFixture
2223
{
2324
[SetUp]
2425
public virtual async Task Setup()
2526
{
26-
//used for loggers outside of ServiceControl (i.e. transports and core) to use the logger factory defined here
27+
//used for loggers outside ServiceControl (i.e. transports and core) to use the logger factory defined here
2728
LogManager.UseFactory(new ExtensionsLoggerFactory(new TestContextAppenderFactory(Microsoft.Extensions.Logging.LogLevel.Warning)));
2829
LoggerUtil.ActiveLoggers = Loggers.Test;
2930
configuration = new TransportTestsConfiguration();

src/ServiceControlInstaller.Engine.UnitTests/Configuration/InstallationFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.IO;
44
using NUnit.Framework;
55

6-
public class InstallationFixture
6+
public abstract class InstallationFixture
77
{
88
[SetUp]
99
public void SetUp()

0 commit comments

Comments
 (0)