From bf506d96cd2e6cac67fa37b0444335737cac1b12 Mon Sep 17 00:00:00 2001 From: "Jeremy D. Miller" Date: Tue, 24 Sep 2024 15:47:34 -0500 Subject: [PATCH] deleting a test that was never implemented --- .../StrongTypedId/guid_based_document_operations.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/ValueTypeTests/StrongTypedId/guid_based_document_operations.cs b/src/ValueTypeTests/StrongTypedId/guid_based_document_operations.cs index 71e30e2017..02ceab4e57 100644 --- a/src/ValueTypeTests/StrongTypedId/guid_based_document_operations.cs +++ b/src/ValueTypeTests/StrongTypedId/guid_based_document_operations.cs @@ -158,19 +158,6 @@ public async Task load_many_through_linq() results.Count.ShouldBe(3); } - [Fact] - public async Task load_many() - { - var invoice1 = new Invoice2{Name = Guid.NewGuid().ToString()}; - var invoice2 = new Invoice2{Name = Guid.NewGuid().ToString()}; - var invoice3 = new Invoice2{Name = Guid.NewGuid().ToString()}; - theSession.Store(invoice1, invoice2, invoice3); - - await theSession.SaveChangesAsync(); - throw new NotImplementedException(); - //var invoices = await theSession.LoadManyAsync() - } - [Fact] public async Task delete_by_id() {