aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/main.cpp
blob: a2855416839c2064df12432b5892fff7916509c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  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();
    testAllMac();
    return 0;
}