aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/itestframework.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-03-13 13:54:33 +0100
committerhjk <hjk@qt.io>2020-03-16 12:18:29 +0000
commitd3f79fcc68d667dfd000fc5d72a98cd53eb0fab7 (patch)
tree78beae5bd43f772e555a9d959c5e365819ce3de7 /src/plugins/autotest/itestframework.h
parentc1f210dd69a3fc99851544bd78c82c624a02bc20 (diff)
AutoTest: Use ITestFramework * instead of its id in some cases
Change-Id: Ic327e31185247b6479c78af8bf8156f44bb4bdfb Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/autotest/itestframework.h')
-rw-r--r--src/plugins/autotest/itestframework.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/autotest/itestframework.h b/src/plugins/autotest/itestframework.h
index 78ad2ae1e8..bc3e5cb386 100644
--- a/src/plugins/autotest/itestframework.h
+++ b/src/plugins/autotest/itestframework.h
@@ -71,7 +71,7 @@ public:
// framework specific tool tip to be displayed on the general settings page
virtual QString groupingToolTip() const { return QString(); }
protected:
- virtual ITestParser *createTestParser() const = 0;
+ virtual ITestParser *createTestParser() = 0;
virtual TestTreeItem *createRootNode() const = 0;
private:
@@ -81,4 +81,6 @@ private:
bool m_grouping = false;
};
+using TestFrameworks = QList<ITestFramework *>;
+
} // namespace Autotest