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

is_fatal_correctly_identifies_fatal_exceptions() private method

private is_fatal_correctly_identifies_fatal_exceptions ( ) : void
return void
        public void is_fatal_correctly_identifies_fatal_exceptions()
        {
            foreach(var exception in GetFatalExceptions())
            {
                Assert.True(exception.IsFatal(),
                    "a " + exception.GetType() + " exception should be fatal");
            }
        }