summaryrefslogtreecommitdiff
path: root/plugins/autotest/testresult.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/autotest/testresult.h')
-rw-r--r--plugins/autotest/testresult.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/autotest/testresult.h b/plugins/autotest/testresult.h
index c1d6d5eac4..e1e6e770d0 100644
--- a/plugins/autotest/testresult.h
+++ b/plugins/autotest/testresult.h
@@ -41,6 +41,11 @@ enum Type {
MESSAGE_WARN,
MESSAGE_FATAL,
MESSAGE_INTERNAL,
+ MESSAGE_TEST_CASE_START,
+ MESSAGE_TEST_CASE_SUCCESS,
+ MESSAGE_TEST_CASE_WARN,
+ MESSAGE_TEST_CASE_FAIL,
+ MESSAGE_TEST_CASE_END,
MESSAGE_CURRENT_TEST,
UNKNOWN // ???
};
@@ -65,6 +70,7 @@ public:
void setDescription(const QString &description) { m_description = description; }
void setFileName(const QString &fileName) { m_file = fileName; }
void setLine(int line) { m_line = line; }
+ void setResult(Result::Type type) { m_result = type; }
static Result::Type resultFromString(const QString &resultString);
static Result::Type toResultType(int rt);