DiffMatchPatch\DiffMatchPatchTest::testPatchApply PHP Метод

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

public testPatchApply ( )
    public function testPatchApply()
    {
        $patches = $this->dmp->patch_make("The quick brown fox jumps over the lazy dog.", "That quick brown fox jumped over a lazy dog.");
        $this->assertEquals(array("That quick red rabbit jumped over a tired tiger.", array(true, true)), $this->dmp->patch_apply($patches, "The quick red rabbit jumps over the tired tiger."));
    }