public function DumperTest::testZeroIndentationThrowsException in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/symfony/yaml/Tests/DumperTest.php \Symfony\Component\Yaml\Tests\DumperTest::testZeroIndentationThrowsException()
@expectedException \InvalidArgumentException @expectedExceptionMessage The indentation must be greater than zero
File
- vendor/
symfony/ yaml/ Symfony/ Component/ Yaml/ Tests/ DumperTest.php, line 237
Class
Namespace
Symfony\Component\Yaml\TestsCode
public function testZeroIndentationThrowsException() {
$this->dumper
->setIndentation(0);
}