Test empty string matches (aka "(?:)")
| 16 | |
| 17 | // Test empty string matches (aka "(?:)") |
| 18 | TEST(EmptyString, Exhaustive) { |
| 19 | ExhaustiveTest(2, 2, Split(" ", "(?:) a"), |
| 20 | RegexpGenerator::EgrepOps(), |
| 21 | 5, Split("", "ab"), "", ""); |
| 22 | } |
| 23 | |
| 24 | // Test escaped versions of regexp syntax. |
| 25 | TEST(Punctuation, Literals) { |
nothing calls this directly
no test coverage detected