Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 321 Bytes

main.cpp

File metadata and controls

20 lines (15 loc) · 321 Bytes
 
Apr 8, 2013
Apr 8, 2013
1
2
3
4
5
6
7
8
9
10
11
/**
* @file main.cpp
* @copyright 2012 Jolla Ltd.
* @author Martin Kampas <martin.kampas@tieto.com>
* @date 2012
*/
#include <QtTest/QtTest>
#include "sandboxtest.h"
Oct 10, 2016
Oct 10, 2016
12
13
14
int main(int argc, char **argv)
{
SandboxTest sandboxTest;
Apr 8, 2013
Apr 8, 2013
15
Oct 10, 2016
Oct 10, 2016
16
17
if (QTest::qExec(&sandboxTest, argc, argv))
return 1;
Apr 8, 2013
Apr 8, 2013
18
Oct 10, 2016
Oct 10, 2016
19
return 0;
Apr 8, 2013
Apr 8, 2013
20
}