Akka.Streams.Tests.Dsl.FlowScanSpec.A_Scan_must_Scan_empty_failed C# (CSharp) Méthode

A_Scan_must_Scan_empty_failed() private méthode

private A_Scan_must_Scan_empty_failed ( ) : void
Résultat void
        public void A_Scan_must_Scan_empty_failed()
        {
            this.AssertAllStagesStopped(() =>
            {
                var error = new TestException("fail!");
                Action fail = () => Scan(Source.Failed<int>(error));
                fail.ShouldThrow<TestException>();
            }, Materializer);
        }