示例#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());
 }