Esempio n. 1
0
 /**
  * Test the `setIndentLevel` and `getIndentLevel` accessors.
  */
 public function testIndentLevelAccessors()
 {
     $level = mt_rand();
     $code = new PHPRawCode();
     $code->setIndentLevel($level);
     $this->assertSame($level, $code->getIndentLevel());
 }