/**
  * @return void
  */
 public function testIndentAccesorsWork()
 {
     $this->assertEquals('', $this->container->getIndent());
     $this->container->setIndent('    ');
     $this->assertEquals('    ', $this->container->getIndent());
     $this->container->setIndent(5);
     $this->assertEquals('     ', $this->container->getIndent());
 }