aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/main.mm
blob: 10be4c029da39850d3b7c961f54b050c49f33460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  main.m
//  tests
//
//  Created by DINH Viêt Hoà on 1/10/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#import <Foundation/Foundation.h>

#include "test-all.h"

int main(int argc, const char * argv[])
{

    @autoreleasepool {
        
        testAll();
        
    }
    return 0;
}