| 13943 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 13944 | } |
| 13945 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 13946 | CATCH_ENFORCE( !isReservedTag(tag), |
| 13947 | "Tag name: [" << tag << "] is not allowed.\n" |
| 13948 | << "Tag names starting with non alphanumeric characters are reserved\n" |
| 13949 | << _lineInfo ); |
| 13950 | } |
| 13951 | } |
| 13952 | |
| 13953 | TestCase makeTestCase( ITestInvoker* _testCase, |
no test coverage detected