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

ExceptionThrown_At_Notification() private method

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

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

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