Skip to content

Commit

Permalink
Return test
Browse files Browse the repository at this point in the history
  • Loading branch information
IhnatKlimchuk committed Jun 5, 2022
1 parent bb7ae17 commit ac7d007
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public GenericReplicatorTests(MongoDbFixture mongoDbFixture, ElasticsearchFixtur
.Build();
}

[Fact(Skip = "TEST")]
[Fact]
public async Task GenericReplicator_ReplicateAlreadExistingDocument_Success()
{
await MongoDbFixture.ResetReplicationStateAsync("persons");
Expand Down Expand Up @@ -66,7 +66,7 @@ await Assertion.Eventually(async () =>
});
}

[Fact(Skip = "TEST")]
[Fact]
public async Task GenericReplicator_ReplicateAddedDocument_Success()
{
await MongoDbFixture.ResetReplicationStateAsync("persons");
Expand All @@ -92,7 +92,7 @@ await Assertion.Eventually(async () =>
});
}

[Fact(Skip = "TEST")]
[Fact]
public async Task GenericReplicator_ReplicateDeletedDocument_Success()
{
await MongoDbFixture.ResetReplicationStateAsync("persons");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public MongoDbCompositeIdTests(MongoDbFixture mongoDbFixture, ElasticsearchFixtu
.Build();
}

[Fact(Skip = "TEST")]
[Fact]
public async Task GenericReplicator_ReplicateAlreadExistingDocument_WithCompositeId_Success()
{
await MongoDbFixture.ResetReplicationStateAsync("composite-id-persons");
Expand All @@ -47,7 +47,7 @@ await Assertion.Eventually(async () =>
});
}

[Fact(Skip = "TEST")]
[Fact]
public async Task GenericReplicator_ReplicateAddedDocument_WithCompositeId_Success()
{
await MongoDbFixture.ResetReplicationStateAsync("composite-id-persons");
Expand All @@ -73,7 +73,7 @@ await Assertion.Eventually(async () =>
});
}

[Fact(Skip = "TEST")]
[Fact]
public async Task GenericReplicator_ReplicateDeletedDocument_WithCompositeId_Success()
{
await MongoDbFixture.ResetReplicationStateAsync("composite-id-persons");
Expand All @@ -100,7 +100,7 @@ await Assertion.Eventually(async () =>
});
}

[Fact(Skip = "TEST")]
[Fact]
public async Task GenericReplicator_ReplicateDocumentMultipleUpdates_WithCompositeId_Success()
{
await MongoDbFixture.ResetReplicationStateAsync("composite-id-persons");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public SourceRepositoryTests(MongoDbFixture mongoDbFixture, ElasticsearchFixture
{
}

[Fact(Skip = "TEST")]
[Fact]
public async Task SourceRepository_GetDocumentsAsync_UseExcludeProjection()
{
var sourceRepository = new SourceRepository<MongoPerson>(
Expand Down Expand Up @@ -51,7 +51,7 @@ public async Task SourceRepository_GetDocumentsAsync_UseExcludeProjection()
}
}

[Fact(Skip = "TEST")]
[Fact]
public async Task SourceRepository_TryGetStreamAsync_UseExcludeProjection()
{
var sourceRepository = new SourceRepository<MongoPerson>(
Expand Down

0 comments on commit ac7d007

Please sign in to comment.