public function InlineTest::testParseScalarWithIncorrectlyQuotedStringShouldThrowException in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/yaml/Tests/InlineTest.php \Symfony\Component\Yaml\Tests\InlineTest::testParseScalarWithIncorrectlyQuotedStringShouldThrowException()
@expectedException \Symfony\Component\Yaml\Exception\ParseException
File
- vendor/
symfony/ yaml/ Tests/ InlineTest.php, line 78
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testParseScalarWithIncorrectlyQuotedStringShouldThrowException() {
$value = "'don't do somthin' like that'";
Inline::parse($value);
}