Akka.Streams.Tests.Dsl.FlowSlidingSpec.Sliding_must_work_with_empty_sources C# (CSharp) Method

Sliding_must_work_with_empty_sources() private method

private Sliding_must_work_with_empty_sources ( ) : void
return void
        public void Sliding_must_work_with_empty_sources()
        {
            this.AssertAllStagesStopped(() =>
            {
                Source.Empty<int>().Sliding(1).RunForeach(ints => TestActor.Tell(ints), Materializer)
                    .ContinueWith(t =>
                    {
                        if (t.IsCompleted && t.Exception == null)
                            TestActor.Tell("done");
                    });
                    

                ExpectMsg("done");
            }, Materializer);
        }
    }