Akka.Streams.Tests.Dsl.SourceSpec.Repeat_Source_must_repeat_as_long_as_it_takes C# (CSharp) Метод

Repeat_Source_must_repeat_as_long_as_it_takes() приватный Метод

private Repeat_Source_must_repeat_as_long_as_it_takes ( ) : void
Результат void
        public void Repeat_Source_must_repeat_as_long_as_it_takes()
        {
            var f = Source.Repeat(42).Grouped(1000).RunWith(Sink.First<IEnumerable<int>>(), Materializer);
            f.Result.Should().HaveCount(1000).And.Match(x => x.All(i => i == 42));
        }