aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/main.mm
blob: b17fa0f5697ee2b77845232df69490323775a87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  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"
#if __APPLE__
#include "test-all-mac.h"
#endif

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

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