AK.F1.Timing.Extensions.ExceptionExtensionsTest.is_fatal_correctly_identifies_non_fatal_exceptions C# (CSharp) Метод

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

private is_fatal_correctly_identifies_non_fatal_exceptions ( ) : void
Результат void
        public void is_fatal_correctly_identifies_non_fatal_exceptions()
        {
            foreach(var exception in GetNonFatalExceptions())
            {
                Assert.False(exception.IsFatal(),
                    "a " + (exception != null ? exception.GetType().FullName : "(null)") + " exception should not be fatal");
            }
        }