public function InlineTest::testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException in Translation template extractor 7.2
Same name and namespace in other branches
- 6.3 vendor/Symfony/Component/Yaml/Tests/InlineTest.php \Symfony\Component\Yaml\Tests\InlineTest::testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException()
- 7.3 vendor/Symfony/Component/Yaml/Tests/InlineTest.php \Symfony\Component\Yaml\Tests\InlineTest::testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException()
@expectedException \Symfony\Component\Yaml\Exception\ParseException
File
- vendor/
Symfony/ Component/ Yaml/ Tests/ InlineTest.php, line 80
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException() {
$value = '"don"t do somthin" like that"';
Inline::parse($value);
}