EDITest\ParserTest::testArrayUnwrap PHP Метод

testArrayUnwrap() публичный Метод

public testArrayUnwrap ( )
    public function testArrayUnwrap()
    {
        $arr = ["LOC+11+ITGOA'MEA+WT++KGM:9040'"];
        $p = new Parser($arr);
        $test = $p->get();
        $expected = array(array("LOC", "11", "ITGOA"), array("MEA", "WT", "", array("KGM", "9040")));
        $this->assertEquals($expected, $test);
    }