diff options
author | Christian Stenger <christian.stenger@digia.com> | 2014-10-07 15:51:02 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@theqtcompany.com> | 2014-12-04 13:52:15 +0100 |
commit | 44db2be195b38316e238eddad80b816ab96b6058 (patch) | |
tree | 5bf50c8194761477910a852776fcc7e3098eb259 /plugins/autotest/testtreemodel.h | |
parent | 2f4139e5d313902683a3a4a98f9ef012afff8734 (diff) | |
download | qt-creator-44db2be195b38316e238eddad80b816ab96b6058.tar.gz |
Provide basic test runner and output pane
Diffstat (limited to 'plugins/autotest/testtreemodel.h')
-rw-r--r-- | plugins/autotest/testtreemodel.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/autotest/testtreemodel.h b/plugins/autotest/testtreemodel.h index 9ec25f0476..040e1c912c 100644 --- a/plugins/autotest/testtreemodel.h +++ b/plugins/autotest/testtreemodel.h @@ -19,6 +19,8 @@ #ifndef TESTTREEMODEL_H #define TESTTREEMODEL_H +#include "testconfiguration.h" + #include <cplusplus/CppDocument.h> #include <QAbstractItemModel> @@ -56,6 +58,8 @@ public: TestCodeParser *parser() const { return m_parser; } bool hasTests() const; + QList<TestConfiguration *> getAllTestCases() const; + QList<TestConfiguration *> getSelectedTests() const; signals: |