示例#1
0
文件: Cls.php 项目: Nycto/phpVocab
 public function testAbstractAccess()
 {
     $cls = new \vc\Data\Type\Cls(123);
     $this->assertFalse($cls->getAbstract());
     $this->assertSame($cls, $cls->setAbstract(TRUE));
     $this->assertTrue($cls->getAbstract());
 }