diff -r 000000000000 -r 90a70925562b MYCrypto_main.m
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MYCrypto_main.m	Wed Jun 03 17:20:53 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;
+}