18#ifndef __LIBTEST_TESTRESULT_H
19#define __LIBTEST_TESTRESULT_H
36#define OK TestResult( TestResult::Success )
37#define FAIL TestResult( TestResult::Failure )
38#define SKIP TestResult( TestResult::Skipped )
Represents a Test result created by a TestInstance.
String m_description
Text describing the result.
String & getDescription()
Get result description.
bool isFailed() const
Check if the test failed.
bool isOK() const
Check if the test passed.
const Result m_result
The result code for this test.
const Result getResult() const
Get result code.
bool isSkipped() const
Check if the test is skipped.