public function InlineTest::testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException in Plug 7
@expectedException \Symfony\Component\Yaml\Exception\ParseException
File
- lib/
Symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ InlineTest.php, line 83
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testParseScalarWithIncorrectlyDoubleQuotedStringShouldThrowException() {
$value = '"don"t do somthin" like that"';
Inline::parse($value);
}