MYCrypto_main.m
changeset 0 0a6527af039b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/MYCrypto_main.m	Sat Apr 04 20:42:03 2009 -0700
     1.3 @@ -0,0 +1,23 @@
     1.4 +/*
     1.5 + *  MYCrypto_main.c
     1.6 + *  MYCrypto
     1.7 + *
     1.8 + *  Created by Jens Alfke on 3/28/09.
     1.9 + *  Copyright 2009 Jens Alfke. All rights reserved.
    1.10 + *
    1.11 + */
    1.12 +
    1.13 +
    1.14 +#import "Test.h"
    1.15 +
    1.16 +
    1.17 +int main(int argc, const char **argv) {
    1.18 +    if (argc<2) {
    1.19 +        static const char *testArgs[] = {"MYCrypto", "Test_All"};
    1.20 +        argc = 2;
    1.21 +        argv = testArgs;
    1.22 +    }
    1.23 +    
    1.24 +    RunTestCases(argc,argv);
    1.25 +    return 0;
    1.26 +}