using Centron.Tests.EndToEnd.Infrastructure.Verifier; using Xunit.Abstractions; using Centron.Core; using Centron.Tests.EndToEnd.Infrastructure.Fixtures; using Xunit.Extensions.AssemblyFixture; namespace Centron.Tests.EndToEnd.Infrastructure { public abstract class CentronTest : IAssemblyFixture { public ITestOutputHelper TestOutputHelper { get; } public CentronVerifier Verifier { get; } public CentronTest(ITestOutputHelper testOutputHelper) { Guard.NotNull(testOutputHelper, nameof(testOutputHelper)); this.TestOutputHelper = testOutputHelper; this.Verifier = new CentronVerifier(); } } }