aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/itestframework.h
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2017-12-06 08:45:36 +0100
committerChristian Stenger <christian.stenger@qt.io>2018-01-15 13:21:44 +0000
commit4eabcda3a1ccce6cd503a29c86f65ce1c024a5d3 (patch)
tree36fbf6e1ddb685f8baff29b3c02ddf957e43d375 /src/plugins/autotest/itestframework.h
parentb3e24fbfd4f683fcec98fcab57e7369d5d2956e2 (diff)
AutoTest: Allow grouping of test cases
Grouping of test cases can now get enabled for each registered framework. For now grouping happens only folder based. Task-number: QTCREATORBUG-17979 Change-Id: Ic0e5c0ecc76998a1aedea8aa0845f6d9b53fb179 Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/autotest/itestframework.h')
-rw-r--r--src/plugins/autotest/itestframework.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/autotest/itestframework.h b/src/plugins/autotest/itestframework.h
index ae6e0ec437..67778f1375 100644
--- a/src/plugins/autotest/itestframework.h
+++ b/src/plugins/autotest/itestframework.h
@@ -69,6 +69,8 @@ public:
bool active() const { return m_active; }
void setActive(bool active) { m_active = active; }
+ bool grouping() const { return m_grouping; }
+ void setGrouping(bool group) { m_grouping = group; }
protected:
virtual ITestParser *createTestParser() const = 0;
@@ -78,6 +80,7 @@ private:
TestTreeItem *m_rootNode = 0;
ITestParser *m_testParser = 0;
bool m_active = false;
+ bool m_grouping = false;
};
} // namespace Internal