forked from qt-creator/qt-creator
AutoTest: Introduce inherited state for Qt test tree items
Preparation for later detection and displaying inherited functions for Qt tests. Task-number: QTCREATORBUG-17522 Change-Id: I2af1f758a837049ef676840b03f9cd73a2cb9873 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -34,7 +34,11 @@ class QtTestParseResult : public TestParseResult
|
||||
{
|
||||
public:
|
||||
explicit QtTestParseResult(const Core::Id &id) : TestParseResult(id) {}
|
||||
void setInherited(bool inherited) { m_inherited = inherited; }
|
||||
bool inherited() const { return m_inherited; }
|
||||
TestTreeItem *createTestTreeItem() const override;
|
||||
private:
|
||||
bool m_inherited = false;
|
||||
};
|
||||
|
||||
class QtTestParser : public CppParser
|
||||
|
||||
Reference in New Issue
Block a user