Akka.Streams.Tests.Dsl.FlowScanSpec.A_Scan_must_Scan_empty_failed C# (CSharp) 메소드

A_Scan_must_Scan_empty_failed() 개인적인 메소드

private A_Scan_must_Scan_empty_failed ( ) : void
리턴 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);
        }