| 13466 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 13467 | } |
| 13468 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 13469 | CATCH_ENFORCE( !isReservedTag(tag), |
| 13470 | "Tag name: [" << tag << "] is not allowed.\n" |
| 13471 | << "Tag names starting with non alphanumeric characters are reserved\n" |
| 13472 | << _lineInfo ); |
| 13473 | } |
| 13474 | } |
| 13475 | |
| 13476 | TestCase makeTestCase( ITestInvoker* _testCase, |
no test coverage detected