Example #1
0
 /**
  * Test the `setIndentString` and `getIndentString` methods.
  */
 public function testIndentStringAccessors()
 {
     $value = sha1(microtime(true));
     $config = new Config();
     $config->setIndentString($value);
     $this->assertEquals($value, $config->getIndentString());
 }