mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
18 lines
220 B
C++
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();
|
|
};
|