static void AssertNext(KeyAllocator allocator, string collection, int expected) { allocator.NextId(collection).Should().Be(expected); }
static void AssertNext(KeyAllocator allocator, string collection, int expected) { Assert.Equal(expected, allocator.NextId(collection)); }