| 14039 | return TestCaseInfo::None; |
| 14040 | } |
| 14041 | bool isReservedTag( std::string const& tag ) { |
| 14042 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 14043 | } |
| 14044 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 14045 | CATCH_ENFORCE( !isReservedTag(tag), |
| 14046 | "Tag name: [" << tag << "] is not allowed.\n" |
no test coverage detected