Add some unit tests for reflection and recently discovered array lookup returned from a method problem

This commit is contained in:
Jason Turner
2010-08-28 22:55:43 +00:00
parent 31feab6053
commit efae821996
3 changed files with 28 additions and 2 deletions

View File

@@ -149,10 +149,11 @@ int main(int argc, char *argv[]) {
}
}
std::cout << std::endl;
return EXIT_FAILURE;
}
catch (std::exception &e) {
std::cout << e.what() << std::endl;
return EXIT_FAILURE;
std::cout << e.what() << std::endl;
return EXIT_FAILURE;
}
}
}