EDITest\ParserTest::testEscapedSegment PHP Method

testEscapedSegment() public method

public testEscapedSegment ( )
    public function testEscapedSegment()
    {
        $string = "EQD+CX??DU12?+3456+2?:0'";
        $expected = [["EQD", "CX?DU12+3456", "2:0"]];
        $p = new Parser($string);
        $result = $p->get();
        $this->assertEquals($expected, $result);
    }