aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/testtreemodel.h
diff options
context:
space:
mode:
authorChristian Stenger <[email protected]>2020-10-13 11:37:37 +0200
committerChristian Stenger <[email protected]>2020-11-16 08:10:04 +0000
commit239a59c596119bb6b7855d66467f6c1b635b7c50 (patch)
tree09f9cbad7c5a77164c671df1cefc3245a8d98561 /src/plugins/autotest/testtreemodel.h
parent55298cc2116a3f5f64a33c57e826caad6604a5f8 (diff)
AutoTest: Introduce ITestConfiguration
Preparation for an additional simpler test configuration which needs to have the same common base. Change-Id: I1800ed5d7301f1aea99eba6ef588a204697bd569 Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/autotest/testtreemodel.h')
-rw-r--r--src/plugins/autotest/testtreemodel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/autotest/testtreemodel.h b/src/plugins/autotest/testtreemodel.h
index f979a5ebdcd..412dde98511 100644
--- a/src/plugins/autotest/testtreemodel.h
+++ b/src/plugins/autotest/testtreemodel.h
@@ -60,10 +60,10 @@ public:
Internal::TestCodeParser *parser() const { return m_parser; }
bool hasTests() const;
- QList<TestConfiguration *> getAllTestCases() const;
- QList<TestConfiguration *> getSelectedTests() const;
- QList<TestConfiguration *> getFailedTests() const;
- QList<TestConfiguration *> getTestsForFile(const Utils::FilePath &fileName) const;
+ QList<ITestConfiguration *> getAllTestCases() const;
+ QList<ITestConfiguration *> getSelectedTests() const;
+ QList<ITestConfiguration *> getFailedTests() const;
+ QList<ITestConfiguration *> getTestsForFile(const Utils::FilePath &fileName) const;
QList<TestTreeItem *> testItemsByName(const QString &testName);
void synchronizeTestFrameworks();
void rebuild(const QList<Utils::Id> &frameworkIds);