#include #include 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"