| 14042 | return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) ); |
| 14043 | } |
| 14044 | void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) { |
| 14045 | CATCH_ENFORCE( !isReservedTag(tag), |
| 14046 | "Tag name: [" << tag << "] is not allowed.\n" |
| 14047 | << "Tag names starting with non alphanumeric characters are reserved\n" |
| 14048 | << _lineInfo ); |
| 14049 | } |
| 14050 | } |
| 14051 | |
| 14052 | TestCase makeTestCase( ITestInvoker* _testCase, |
no test coverage detected