##// END OF EJS Templates
Inits unit test
Inits unit test

File last commit:

r712:ea644caa5086
r712:ea644caa5086
Show More
TestVariableSync.cpp
37 lines | 602 B | text/x-c | CppLexer
#include <QObject>
#include <QtTest>
class TestVariableSync : public QObject {
Q_OBJECT
private slots:
/// Input data for @sa testSync()
void testSync_data();
/// Tests synchronization between variables through several operations
void testSync();
};
void TestVariableSync::testSync_data()
{
// ////////////// //
// Test structure //
// ////////////// //
/// @todo
// ////////// //
// Test cases //
// ////////// //
/// @todo
}
void TestVariableSync::testSync()
{
/// @todo
}
QTEST_MAIN(TestVariableSync)
#include "TestVariableSync.moc"