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