From 32a5dedf9c4f01dbb25e0aa397cf2b7964da0232 Mon Sep 17 00:00:00 2001 From: krithik Date: Thu, 31 Mar 2016 18:34:11 -0600 Subject: [PATCH] modify variable i, to make test slightly more useful --- test/TestException.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/TestException.c b/test/TestException.c index eedec81..e248cb0 100644 --- a/test/TestException.c +++ b/test/TestException.c @@ -349,10 +349,12 @@ void test_AbilityToExitTryWithoutThrowingAnError(void) Try { ExitTry(); + i = 1; TEST_FAIL_MESSAGE("Should Have Exited Try Before This"); } Catch(e) { + i = 2; TEST_FAIL_MESSAGE("Should Not Have Been Caught"); }