Akka.Interfaced.NotificationExceptionTest.ExceptionThrown_At_NotificationAsync C# (CSharp) Метод

ExceptionThrown_At_NotificationAsync() приватный Метод

private ExceptionThrown_At_NotificationAsync ( ) : System.Threading.Tasks.Task
Результат System.Threading.Tasks.Task
        public async Task ExceptionThrown_At_NotificationAsync()
        {
            // Arrange
            var log = new LogBoard<string>();
            var actors = await SetupActors2(log);

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

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