예제 #1
0
파일: PhpFileTest.php 프로젝트: hjr3/zf2
 public function testIndentationGetterAndSetter()
 {
     $file = new PHP\PHPFile();
     $file->setIndentation('        ');
     $this->assertEquals('        ', $file->getIndentation());
 }