@dataProvider getDataFormSpecifications
public function testSpecifications($file, $expected, $yaml, $comment) {
if ('escapedCharacters' == $file) {
if (!function_exists('iconv') && !function_exists('mb_convert_encoding')) {
$this
->markTestSkipped('The iconv and mbstring extensions are not available.');
}
}
$this
->assertEquals($expected, var_export($this->parser
->parse($yaml), true), $comment);
}