You are here

public function PropertyPathTest::testAppend in Plug 7

@dataProvider provideAppendPaths

File

lib/Symfony/validator/Symfony/Component/Validator/Tests/Util/PropertyPathTest.php, line 21

Class

PropertyPathTest

Namespace

Symfony\Component\Validator\Tests\Util

Code

public function testAppend($basePath, $subPath, $expectedPath, $message) {
  $this
    ->assertSame($expectedPath, PropertyPath::append($basePath, $subPath), $message);
}