| 11652 | return TestCaseInfo::None; |
| 11653 | } |
| 11654 | bool isReservedTag( std::string const& tag ) { |
| 11655 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 11656 | } |
| 11657 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 11658 | CATCH_ENFORCE( !isReservedTag(tag), |
| 11659 | "Tag name: [" << tag << "] is not allowed.\n" |
no test coverage detected