aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/quick
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2020-04-16 16:26:59 +0200
committerChristian Stenger <christian.stenger@qt.io>2020-04-17 06:53:40 +0000
commit91509727e062b69c6bc807403d5e30f2f8478e64 (patch)
tree82c7cb7ad7123a436749860508b6c227932025c1 /src/plugins/autotest/quick
parent96fe0aab8db2d9edbbf31b515598d70ca2c35b31 (diff)
AutoTest: Fix Qt Quick Test execution
Qt Quick Tests share their settings with Qt Tests and have none on their own. Make the separate handled framework of Qt Quick Test derive from Qt Test framework to share the settings. Regression introduced with 2c79196ab5d. Change-Id: I9934b0357365e2739e7a72b114df97f49da6bc50 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/autotest/quick')
-rw-r--r--src/plugins/autotest/quick/quicktestframework.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/autotest/quick/quicktestframework.h b/src/plugins/autotest/quick/quicktestframework.h
index d42e9ff46e3..deb3b499a21 100644
--- a/src/plugins/autotest/quick/quicktestframework.h
+++ b/src/plugins/autotest/quick/quicktestframework.h
@@ -25,7 +25,7 @@
#pragma once
-#include "../itestframework.h"
+#include "../qtest/qttestframework.h"
namespace Autotest {
namespace QuickTest {
@@ -38,10 +38,10 @@ const char FRAMEWORK_NAME[] = "QtQuickTest";
namespace Internal {
-class QuickTestFramework : public ITestFramework
+class QuickTestFramework : public QtTestFramework
{
public:
- QuickTestFramework() : ITestFramework(true) {}
+ QuickTestFramework() = default;
const char *name() const override;
unsigned priority() const override;