MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / isReservedTag

Function isReservedTag

Source/ThirdParty/catch2/catch.hpp:14034–14036  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14032 return TestCaseInfo::None;
14033 }
14034 bool isReservedTag( std::string const& tag ) {
14035 return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum( static_cast<unsigned char>(tag[0]) );
14036 }
14037 void enforceNotReservedTag( std::string const& tag, SourceLineInfo const& _lineInfo ) {
14038 CATCH_ENFORCE( !isReservedTag(tag),
14039 "Tag name: [" << tag << "] is not allowed.\n"

Callers 1

enforceNotReservedTagFunction · 0.85

Calls 2

parseSpecialTagFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected