| 11451 | } |
| 11452 | |
| 11453 | TestCaseInfo::TestCaseInfo( std::string const& _name, |
| 11454 | std::string const& _className, |
| 11455 | std::string const& _description, |
| 11456 | std::vector<std::string> const& _tags, |
| 11457 | SourceLineInfo const& _lineInfo ) |
| 11458 | : name( _name ), |
| 11459 | className( _className ), |
| 11460 | description( _description ), |
| 11461 | lineInfo( _lineInfo ), |
| 11462 | properties( None ) |
| 11463 | { |
| 11464 | setTags( *this, _tags ); |
| 11465 | } |
| 11466 | |
| 11467 | bool TestCaseInfo::isHidden() const { |
| 11468 | return ( properties & IsHidden ) != 0; |