This class stores results of log section.
More...
#include <CTestResult.h>
Public Types | |
| enum | ETestResultSections { E_SECTION_BEFORE_ASSIGN , E_SECTION_AFTER_ASSIGN } |
| Ids of test result sections. More... | |
Public Member Functions | |
| void | add (const std::string &expr, const std::string &result, ETestResultSections logType) |
| Add result of expression evaluation. | |
| CLogResult (const CTestBaseSPtr &parent) | |
| Initializes new instance. | |
| void | getLog (iconnect::StrVector &expressions, iconnect::StrVector &results, ETestResultSections logType) |
| Returns expressions and their evaluated values. | |
| virtual bool | isEmpty () const |
| This method returns true, if the object contains no data. | |
| virtual void | serialize (const isys::IEmitterSPtr &emitter) |
| Sends contents of this class to emitter. | |
| virtual std::string | toString () |
| Returns object data as YAML string. | |
Static Public Member Functions | |
| static CLogResultSPtr | cast (const CTestBaseSPtr &testBase) |
| Casts the given object to this class. | |
Protected Member Functions | |
| void | setStaticTagsAsConst () |
| This method is called by all objects which are immediately contained in CTestSpecification, for example CTestCoverage, CTestHIL, ... | |
This class stores results of log section.
These values are not used for validating test, but for documentation purposes.
| isys::CLogResult::CLogResult | ( | const CTestBaseSPtr & | parent | ) |
Initializes new instance.
| parent | an instance of parent CTestPoint class. |
| void isys::CLogResult::add | ( | const std::string & | expr, |
| const std::string & | result, | ||
| ETestResultSections | logType ) |
Add result of expression evaluation.
Results should be added in the same order as expressions are specified in test spec.
|
static |
Casts the given object to this class.
Returns NULL if input is NULL.
| IllegalArgumentException | if input object is not instance of this class. |
| void isys::CLogResult::getLog | ( | iconnect::StrVector & | expressions, |
| iconnect::StrVector & | results, | ||
| ETestResultSections | logType ) |
Returns expressions and their evaluated values.
Sizes of both vectors are the same after return.