Skip to content

Commit 2538b63

Browse files
author
Pieter Nys
committed
Add more edge-cases to ParserTest:testMultipleEscapedSegments
1 parent 2068adb commit 2538b63

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/EDITest/ParserTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ public function multipleEscapedSegmentsProvider()
8080
["EQD+CX??DU12?+3456+2?:0??'", [["EQD", "CX?DU12+3456", "2:0?"]]],
8181
["EQD+CX??DU12?+3456+2?:0????'", [["EQD", "CX?DU12+3456", "2:0??"]]],
8282
["EQD+CX??DU12?+3456+2?:0??????'",[["EQD", "CX?DU12+3456", "2:0???"]]],
83+
["??EQD+CX??DU12?+3456+2?:0'", [["?EQD", "CX?DU12+3456", "2:0"]]],
84+
["????EQD+CX??DU12?+3456+2?:0'", [["??EQD", "CX?DU12+3456", "2:0"]]],
85+
["??????EQD+CX??DU12?+3456+2?:0'",[["???EQD", "CX?DU12+3456", "2:0"]]],
86+
["EQD??+CX??DU12?+3456+2?:0'", [["EQD?", "CX?DU12+3456", "2:0"]]],
87+
["EQD????+CX??DU12?+3456+2?:0'", [["EQD??", "CX?DU12+3456", "2:0"]]],
88+
["EQD??????+CX??DU12?+3456+2?:0'",[["EQD???", "CX?DU12+3456", "2:0"]]],
89+
["EQD+??CX??DU12?+3456+2?:0'", [["EQD", "?CX?DU12+3456", "2:0"]]],
90+
["EQD+????CX??DU12?+3456+2?:0'", [["EQD", "??CX?DU12+3456", "2:0"]]],
91+
["EQD+??????CX??DU12?+3456+2?:0'",[["EQD", "???CX?DU12+3456", "2:0"]]],
8392
];
8493
}
8594

0 commit comments

Comments
 (0)