| 11384 | return TestCaseInfo::None; |
| 11385 | } |
| 11386 | bool isReservedTag( std::string const& tag ) { |
| 11387 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 11388 | } |
| 11389 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 11390 | CATCH_ENFORCE( !isReservedTag(tag), |
| 11391 | "Tag name: [" << tag << "] is not allowed.\n" |
no test coverage detected