AK.F1.Timing.Extensions.ExceptionExtensionsTest.is_fatal_correctly_identifies_non_fatal_exceptions C# (CSharp) 메소드

is_fatal_correctly_identifies_non_fatal_exceptions() 개인적인 메소드

        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");
            }
        }