You are here

public function InlineTest::testParsePhpConstants in Lockr 7.3

@dataProvider getTestsForParsePhpConstants

File

vendor/symfony/yaml/Tests/InlineTest.php, line 47

Class

InlineTest

Namespace

Symfony\Component\Yaml\Tests

Code

public function testParsePhpConstants($yaml, $value) {
  $actual = Inline::parse($yaml, Yaml::PARSE_CONSTANT);
  $this
    ->assertSame($value, $actual);
}