diff -r 000000000000 -r 0a6527af039b MYCrypto_main.m --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MYCrypto_main.m Sat Apr 04 20:42:03 2009 -0700 @@ -0,0 +1,23 @@ +/* + * MYCrypto_main.c + * MYCrypto + * + * Created by Jens Alfke on 3/28/09. + * Copyright 2009 Jens Alfke. All rights reserved. + * + */ + + +#import "Test.h" + + +int main(int argc, const char **argv) { + if (argc<2) { + static const char *testArgs[] = {"MYCrypto", "Test_All"}; + argc = 2; + argv = testArgs; + } + + RunTestCases(argc,argv); + return 0; +}