initial commit
This commit is contained in:
commit
9d20827c46
2469 changed files with 470994 additions and 0 deletions
15
qa/guitest/guitest.h
Normal file
15
qa/guitest/guitest.h
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#ifndef GUITEST_H
|
||||
#define GUITEST_H
|
||||
|
||||
#include <QList>
|
||||
#include <QString>
|
||||
|
||||
class GUITest
|
||||
{
|
||||
public:
|
||||
virtual ~GUITest() { }
|
||||
virtual bool run() = 0;
|
||||
virtual QString name() = 0;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in a new issue