Akka.Interfaced.NotificationExceptionTest.ExceptionThrown_At_NotificationReentrantAsyncDone C# (CSharp) 메소드

ExceptionThrown_At_NotificationReentrantAsyncDone() 개인적인 메소드

private ExceptionThrown_At_NotificationReentrantAsyncDone ( ) : System.Threading.Tasks.Task
리턴 System.Threading.Tasks.Task
        public async Task ExceptionThrown_At_NotificationReentrantAsyncDone()
        {
            // Arrange
            var log = new LogBoard<string>();
            var actors = await SetupActors2(log);

            // Act
            await actors.Item1.MakeEvent2("F");

            // Assert
            Watch(actors.Item2);
            ExpectTerminated(actors.Item2);
            Assert.Equal(new[] { "Event2(F)", "Event2(F) Done" },
                         log);
        }
    }