summaryrefslogtreecommitdiffstats
path: root/libqsystemtest/customtestcontrol.h
blob: 0cad4af2a88aec7b8444b5cce41ba4f7354eaa80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef CUSTOMTESTCONTROL_H
#define CUSTOMTESTCONTROL_H

#include "testcontrol.h"

namespace Qt4Test {
class CustomTestControl : public TestControl
{
    Q_OBJECT
public:
    CustomTestControl();
    virtual ~CustomTestControl();

    bool deviceConfiguration( QString &reply );

    bool startApplication( const QString &application, const QStringList &arguments,
                            bool styleQtUITest, const QStringList &environment, QString &reply );
    bool killApplication( const QString &application, QString &reply );
};

}

#endif // CUSTOMTESTCONTROL_H