| 14028 | return TestCaseInfo::None; |
| 14029 | } |
| 14030 | bool isReservedTag( std::string const& tag ) { |
| 14031 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 14032 | } |
| 14033 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 14034 | CATCH_ENFORCE( !isReservedTag(tag), |
| 14035 | "Tag name: [" << tag << "] is not allowed.\n" |
no test coverage detected