AK.F1.Timing.Extensions.ExceptionExtensionsTest.is_fatal_correctly_identifies_non_fatal_exceptions C# (CSharp) Method

is_fatal_correctly_identifies_non_fatal_exceptions() private method

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