This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/qa/guitest/guitest.h
2025-12-25 01:38:25 +05:00

15 lines
187 B
C++

#ifndef GUITEST_H
#define GUITEST_H
#include <QList>
#include <QString>
class GUITest
{
public:
virtual ~GUITest() { }
virtual bool run() = 0;
virtual QString name() = 0;
};
#endif