You are here

public function PropertyPathTest::testAppend in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/validator/Tests/Util/PropertyPathTest.php \Symfony\Component\Validator\Tests\Util\PropertyPathTest::testAppend()

@dataProvider provideAppendPaths

File

vendor/symfony/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);
}