public async Task GetSeries_OnNoSeries_ShouldReturnEmptyCollection()
        {
            var dbName = _fixture.CreateRandomDbName();
            await _fixture.CreateEmptyDatabase(dbName);

            var result = await _fixture.Sut.Serie.GetSeriesAsync(dbName);

            result.Should().HaveCount(0);
        }
        public async Task GetContinuousQueries_OnNonExistingCq_ShouldReturnEmptyCqCollection()
        {
            var dbName = _fixture.CreateRandomDbName();
            await _fixture.CreateEmptyDatabase(dbName);

            var cqs = await _fixture.Sut.ContinuousQuery.GetContinuousQueriesAsync(dbName);

            cqs.Should().NotBeNull();
            cqs.Should().HaveCount(0);
        }