##// END OF EJS Templates
Added SynchronizationGroup2 tests and documentation...
Added SynchronizationGroup2 tests and documentation Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r0:86b06c4cec3c
r1:d51953af4db3
Show More
TestVariableController2.cpp
30 lines | 423 B | text/x-c | CppLexer
/ tests / Variable / TestVariableController2.cpp
#include <QtTest>
#include <QObject>
class TestVariableController2 : public QObject
{
Q_OBJECT
public:
explicit TestVariableController2(QObject *parent = nullptr) : QObject(parent){}
signals:
private slots:
void initTestCase(){}
void cleanupTestCase(){}
void test1()
{
QCOMPARE(1+1, 2);
}
private:
};
QTEST_MAIN(TestVariableController2)
#include "TestVariableController2.moc"