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/guitestmanager.h

25 lines
373 B
C
Raw Permalink Normal View History

2025-12-25 01:37:49 +05:00
#ifndef GUITESTMANAGER_H
#define GUITESTMANAGER_H
#include <QStringList>
#include "guitest.h"
class GUITestManager
{
public:
static GUITestManager* instance();
void registerTest(GUITest* test);
bool runTest(const QString& name);
QStringList getTestNames() const;
private:
GUITestManager();
static GUITestManager* instance_;
QList<GUITest*> tests_;
};
#endif