blob: d1586bce4758a58c79fc36396605078f91c85e88 (
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
28
29
30
31
|
#include "symbiantestcontrol.h"
using namespace Qt4Test;
SymbianTestControl::SymbianTestControl()
: TestControl()
{
}
SymbianTestControl::~SymbianTestControl()
{
}
bool SymbianTestControl::deviceConfiguration( QString &reply )
{
return false;
}
bool SymbianTestControl::startApplication( const QString &application, const QStringList &arguments,
bool styleQtUITest, const QStringList &environment, QString &reply )
{
return false;
}
bool SymbianTestControl::killApplication( const QString &application, QString &reply )
{
return false;
}
|