Akka.Interfaced.NotificationExceptionTest.ExceptionThrown_At_NotificationReentrantAsync C# (CSharp) Method

ExceptionThrown_At_NotificationReentrantAsync() private method

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

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

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