| 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" |
| 14036 | << "Tag names starting with non alphanumeric characters are reserved\n" |
| 14037 | << _lineInfo ); |
| 14038 | } |
| 14039 | } |
| 14040 | |
| 14041 | TestCase makeTestCase( ITestInvoker* _testCase, |
no test coverage detected