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/testinfo.cpp | |
parent | 2f4139e5d313902683a3a4a98f9ef012afff8734 (diff) | |
download | qt-creator-44db2be195b38316e238eddad80b816ab96b6058.tar.gz |
Provide basic test runner and output pane
Diffstat (limited to 'plugins/autotest/testinfo.cpp')
-rw-r--r-- | plugins/autotest/testinfo.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/autotest/testinfo.cpp b/plugins/autotest/testinfo.cpp index 8e5850c84b..ad904e9a0f 100644 --- a/plugins/autotest/testinfo.cpp +++ b/plugins/autotest/testinfo.cpp @@ -30,5 +30,10 @@ TestInfo::TestInfo(const QString &className, const QStringList &functions, unsig { } +TestInfo::~TestInfo() +{ + m_functions.clear(); +} + } // namespace Internal } // namespace Autotest |