diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/client/CMakeLists.txt | 1 | ||||
-rw-r--r-- | tests/client/modeltest.cpp | 10 |
2 files changed, 1 insertions, 10 deletions
diff --git a/tests/client/CMakeLists.txt b/tests/client/CMakeLists.txt index 0fcac9e..54faf34 100644 --- a/tests/client/CMakeLists.txt +++ b/tests/client/CMakeLists.txt @@ -59,6 +59,7 @@ declare_test(actiongrouptest) declare_test(qmltest)
declare_simple_test(convertertest)
declare_simple_test(cachetest)
+declare_simple_test(modelsignalstest)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/qmlfiles.h.in
${CMAKE_CURRENT_BINARY_DIR}/qmlfiles.h)
diff --git a/tests/client/modeltest.cpp b/tests/client/modeltest.cpp index 3366177..017f859 100644 --- a/tests/client/modeltest.cpp +++ b/tests/client/modeltest.cpp @@ -29,15 +29,6 @@ extern "C" { #include <gio/gio.h> } -class TestMenuModel : public QMenuModel -{ -public: - TestMenuModel(GMenuModel *other, QObject *parent=0) - : QMenuModel(other, parent) - { - } -}; - class ModelTest : public QObject { Q_OBJECT @@ -296,7 +287,6 @@ private Q_SLOTS: QVariantMap extra = data["extra"].toMap(); QCOMPARE(extra.size(), 13); QCOMPARE(extra["boolean"].toBool(), true); - } }; |