| 13463 | return TestCaseInfo::None; |
| 13464 | } |
| 13465 | bool isReservedTag( std::string const& tag ) { |
| 13466 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 13467 | } |
| 13468 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 13469 | CATCH_ENFORCE( !isReservedTag(tag), |
| 13470 | "Tag name: [" << tag << "] is not allowed.\n" |
no test coverage detected