keyed Delete unit tests

This commit is contained in:
Sean Garrett
2023-06-16 11:51:40 +01:00
parent 54e756c695
commit c6545b9448
19 changed files with 565 additions and 138 deletions
@@ -11,7 +11,7 @@ namespace CoreUnitTests.BaseMongoRepositoryTests.IndexTests;
public class CreateAscendingIndexTests : BaseIndexTests
{
[Fact]
/*[Fact]
public async Task CreateAscendingIndexAsync_EnsureTokenPassed()
{
// Arrange
@@ -20,10 +20,10 @@ public class CreateAscendingIndexTests : BaseIndexTests
// Act
Expression<Func<TestDocument, object>> fieldExpression = t => t.SomeContent2;
await Sut.CreateAscendingIndexAsync<TestDocument>(fieldExpression, token);
// await Sut.CreateAscendingIndexAsync<TestDocument>(fieldExpression, token);
// Assert
IndexHandler.Verify(x => x.CreateAscendingIndexAsync<TestDocument, Guid>(
fieldExpression, null, null, token));
}
}*/
}