Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

namespace TinyEvents.PostgreSql.Tests;

public sealed class AdoNetPostgreSqlEndToEndRuntimeTests : IClassFixture<PostgreSqlFixture>
[Collection(PostgreSqlIntegrationCollection.Name)]
public sealed class AdoNetPostgreSqlEndToEndRuntimeTests
{
private readonly PostgreSqlFixture fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

namespace TinyEvents.PostgreSql.Tests;

public sealed class AdoNetPostgreSqlSchemaRuntimeTests : IClassFixture<PostgreSqlFixture>
[Collection(PostgreSqlIntegrationCollection.Name)]
public sealed class AdoNetPostgreSqlSchemaRuntimeTests
{
private readonly PostgreSqlFixture fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

namespace TinyEvents.PostgreSql.Tests;

public sealed class AdoNetPostgreSqlStoreRuntimeTests : IClassFixture<PostgreSqlFixture>
[Collection(PostgreSqlIntegrationCollection.Name)]
public sealed class AdoNetPostgreSqlStoreRuntimeTests
{
private readonly PostgreSqlFixture fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

namespace TinyEvents.PostgreSql.Tests;

public sealed class AdoNetPostgreSqlWriterRuntimeTests : IClassFixture<PostgreSqlFixture>
[Collection(PostgreSqlIntegrationCollection.Name)]
public sealed class AdoNetPostgreSqlWriterRuntimeTests
{
private readonly PostgreSqlFixture fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

namespace TinyEvents.PostgreSql.Tests;

public sealed class EfCorePostgreSqlStoreRuntimeTests : IClassFixture<PostgreSqlFixture>
[Collection(PostgreSqlIntegrationCollection.Name)]
public sealed class EfCorePostgreSqlStoreRuntimeTests
{
private readonly PostgreSqlFixture fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

namespace TinyEvents.PostgreSql.Tests;

public sealed class EfCorePostgreSqlWriterRuntimeTests : IClassFixture<PostgreSqlFixture>
[Collection(PostgreSqlIntegrationCollection.Name)]
public sealed class EfCorePostgreSqlWriterRuntimeTests
{
private readonly PostgreSqlFixture fixture;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

namespace TinyEvents.PostgreSql.Tests;

public sealed class PostgreSqlContainerTests : IClassFixture<PostgreSqlFixture>
[Collection(PostgreSqlIntegrationCollection.Name)]
public sealed class PostgreSqlContainerTests
{
private readonly PostgreSqlFixture fixture;

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using Xunit;

namespace TinyEvents.PostgreSql.Tests;

[CollectionDefinition(Name)]
public sealed class PostgreSqlIntegrationCollection : ICollectionFixture<PostgreSqlFixture>
{
public const string Name = "PostgreSQL integration";
}
Loading