File tree Expand file tree Collapse file tree 6 files changed +15
-15
lines changed
WorkflowCore.Tests.Elasticsearch
WorkflowCore.Tests.MongoDB
WorkflowCore.Tests.PostgreSQL
WorkflowCore.Tests.SqlServer Expand file tree Collapse file tree 6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ public Task DisposeAsync()
31
31
public class ElasticsearchCollection : ICollectionFixture < ElasticsearchDockerSetup >
32
32
{
33
33
}
34
- }
34
+ }
Original file line number Diff line number Diff line change 5
5
using Xunit ;
6
6
7
7
namespace WorkflowCore . Tests . MongoDB
8
- {
8
+ {
9
9
public class MongoDockerSetup : IAsyncLifetime
10
10
{
11
11
private readonly MongoResource _mongoResource ;
@@ -15,7 +15,7 @@ public MongoDockerSetup()
15
15
{
16
16
_mongoResource = new MongoResource ( ) ;
17
17
}
18
-
18
+
19
19
public async Task InitializeAsync ( )
20
20
{
21
21
await _mongoResource . InitializeAsync ( ) ;
@@ -33,6 +33,6 @@ public Task DisposeAsync()
33
33
34
34
[ CollectionDefinition ( "Mongo collection" ) ]
35
35
public class MongoCollection : ICollectionFixture < MongoDockerSetup >
36
- {
36
+ {
37
37
}
38
- }
38
+ }
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public MysqlDockerSetup()
15
15
{
16
16
_mySqlResource = new MySqlResource ( ) ;
17
17
}
18
-
18
+
19
19
public async Task InitializeAsync ( )
20
20
{
21
21
await _mySqlResource . InitializeAsync ( ) ;
@@ -33,4 +33,4 @@ public Task DisposeAsync()
33
33
public class MysqlCollection : ICollectionFixture < MysqlDockerSetup >
34
34
{
35
35
}
36
- }
36
+ }
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public PostgresDockerSetup()
16
16
AppContext . SetSwitch ( "Npgsql.EnableLegacyTimestampBehavior" , true ) ;
17
17
_postgreSqlResource = new PostgreSqlResource ( ) ;
18
18
}
19
-
19
+
20
20
public async Task InitializeAsync ( )
21
21
{
22
22
await _postgreSqlResource . InitializeAsync ( ) ;
@@ -29,9 +29,9 @@ public Task DisposeAsync()
29
29
return _postgreSqlResource . DisposeAsync ( ) ;
30
30
}
31
31
}
32
-
32
+
33
33
[ CollectionDefinition ( "Postgres collection" ) ]
34
34
public class PostgresCollection : ICollectionFixture < PostgresDockerSetup >
35
- {
35
+ {
36
36
}
37
- }
37
+ }
Original file line number Diff line number Diff line change 4
4
using Xunit ;
5
5
6
6
namespace WorkflowCore . Tests . Redis
7
- {
7
+ {
8
8
public class RedisDockerSetup : IAsyncLifetime
9
9
{
10
10
private readonly RedisResource _redisResource ;
@@ -29,6 +29,6 @@ public Task DisposeAsync()
29
29
30
30
[ CollectionDefinition ( "Redis collection" ) ]
31
31
public class RedisCollection : ICollectionFixture < RedisDockerSetup >
32
- {
32
+ {
33
33
}
34
- }
34
+ }
Original file line number Diff line number Diff line change @@ -31,6 +31,6 @@ public Task DisposeAsync()
31
31
32
32
[ CollectionDefinition ( "SqlServer collection" ) ]
33
33
public class SqlServerCollection : ICollectionFixture < SqlDockerSetup >
34
- {
34
+ {
35
35
}
36
36
}
You can’t perform that action at this time.
0 commit comments