コード例 #1
0
        public async Task ReadEventsAsync_WhenCursorIsNotEmpty_ReturnsNotEmptyCollectionEvents(
            EventStreamReader reader)
        {
            await reader.ReadEventsAsync();

            Assert.NotEmpty(reader.Events);
        }
コード例 #2
0
 public async Task ReadEventsAsync_WhenCursorIsNotEmpty_DoesNotThrow(
     EventStreamReader reader)
 {
     await reader.ReadEventsAsync();
 }