예제 #1
0
파일: Cls.php 프로젝트: Nycto/phpVocab
 public function testFinalAccess()
 {
     $cls = new \vc\Data\Type\Cls(123);
     $this->assertFalse($cls->getFinal());
     $this->assertSame($cls, $cls->setFinal(TRUE));
     $this->assertTrue($cls->getFinal());
 }