public async Task ReadEventsAsync_WhenCursorIsNotEmpty_ReturnsNotEmptyCollectionEvents(
            EventStreamReader reader)
        {
            await reader.ReadEventsAsync();

            Assert.NotEmpty(reader.Events);
        }
 public async Task ReadEventsAsync_WhenCursorIsNotEmpty_DoesNotThrow(
     EventStreamReader reader)
 {
     await reader.ReadEventsAsync();
 }