summaryrefslogtreecommitdiff
path: root/plugins/autotest/testresult.cpp
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@theqtcompany.com>2014-12-19 11:22:53 +0100
committerChristian Stenger <christian.stenger@theqtcompany.com>2015-01-06 17:08:38 +0200
commitbe4c06fdaf0a8292f0ee9719ca1b53bfbeee6388 (patch)
treec231aaa0dc45160442f1566142a4e247901a152b /plugins/autotest/testresult.cpp
parent0c737c21ff2808a6615b2b433e3d5a9beeda58bb (diff)
downloadqt-creator-be4c06fdaf0a8292f0ee9719ca1b53bfbeee6388.tar.gz
introduce FaultyTestResult class
Change-Id: I5f20741492dbb3d553bea30a677965d46d6d8eb3 Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com> Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'plugins/autotest/testresult.cpp')
-rw-r--r--plugins/autotest/testresult.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/autotest/testresult.cpp b/plugins/autotest/testresult.cpp
index 2ade2c42ae..6c8d0639da 100644
--- a/plugins/autotest/testresult.cpp
+++ b/plugins/autotest/testresult.cpp
@@ -21,6 +21,11 @@
namespace Autotest {
namespace Internal {
+FaultyTestResult::FaultyTestResult(ResultType result, const QString &description)
+ : TestResult(QString(), QString(), QString(), result, description)
+{
+}
+
TestResult::TestResult(const QString &className, const QString &testCase, const QString &dataTag,
ResultType result, const QString &description)
: m_class(className),