cpp-ipc/test/test.h
2018-12-11 22:28:29 +08:00

18 lines
220 B
C++

#pragma once
#include <QtTest>
class TestSuite : public QObject
{
Q_OBJECT
public:
explicit TestSuite();
protected:
virtual const char* name() const;
protected slots:
virtual void initTestCase();
};