aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/testresult.h
diff options
context:
space:
mode:
authorChristian Stenger <[email protected]>2016-05-11 13:02:42 +0200
committerChristian Stenger <[email protected]>2016-06-01 11:37:32 +0000
commit2f8b4b3fbfdb43e1a2c3c2637c7f6388190c29dc (patch)
tree2bf88ac0d40a2038938586f34802976e851fabe5 /src/plugins/autotest/testresult.h
parent6c18ed50d276e19dc2e36e1a5b19af6cf67c51e6 (diff)
AutoTest: Move test framework related code...
...into files and respective sub folders. Change-Id: Ic80d693bd73993a6e74b6d422349e47276e8cb6e Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/autotest/testresult.h')
-rw-r--r--src/plugins/autotest/testresult.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/plugins/autotest/testresult.h b/src/plugins/autotest/testresult.h
index 9b73e950022..4756d1225b5 100644
--- a/src/plugins/autotest/testresult.h
+++ b/src/plugins/autotest/testresult.h
@@ -105,32 +105,6 @@ public:
FaultyTestResult(Result::Type result, const QString &description);
};
-class QTestResult : public TestResult
-{
-public:
- explicit QTestResult(const QString &className = QString());
- const QString outputString(bool selected) const override;
-
- void setFunctionName(const QString &functionName) { m_function = functionName; }
- void setDataTag(const QString &dataTag) { m_dataTag = dataTag; }
-
-private:
- QString m_function;
- QString m_dataTag;
-};
-
-class GTestResult : public TestResult
-{
-public:
- explicit GTestResult(const QString &name = QString());
- const QString outputString(bool selected) const override;
-
- void setTestSetName(const QString &testSetName) { m_testSetName = testSetName; }
-
-private:
- QString m_testSetName;
-};
-
} // namespace Internal
} // namespace Autotest