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

#include "test-all.h"
#if __APPLE__
#include "test-all-mac.h"
#endif

int main(int argc, const char * argv[])
{
    testAll();
#if __APPLE__
    testAllMac();
#endif
    return 0;
}