| 33 | /*const*/ Settings settings; |
| 34 | |
| 35 | void run() override { |
| 36 | ASSERT_EQUALS("", settings.addEnabled("internal")); |
| 37 | |
| 38 | mNewTemplate = true; |
| 39 | TEST_CASE(simplePatternInTokenMatch); |
| 40 | TEST_CASE(complexPatternInTokenSimpleMatch); |
| 41 | TEST_CASE(simplePatternSquareBrackets); |
| 42 | TEST_CASE(simplePatternAlternatives); |
| 43 | TEST_CASE(missingPercentCharacter); |
| 44 | TEST_CASE(unknownPattern); |
| 45 | TEST_CASE(redundantNextPrevious); |
| 46 | TEST_CASE(internalError); |
| 47 | TEST_CASE(orInComplexPattern); |
| 48 | TEST_CASE(extraWhitespace); |
| 49 | TEST_CASE(checkRedundantTokCheck); |
| 50 | } |
| 51 | |
| 52 | #define check(...) check_(__FILE__, __LINE__, __VA_ARGS__) |
| 53 | template<size_t size> |
nothing calls this directly
no test coverage detected