Ejemplo n.º 1
0
 public function testAbstractAccess()
 {
     $cls = new \vc\Data\Type\Cls(123);
     $this->assertFalse($cls->getAbstract());
     $this->assertSame($cls, $cls->setAbstract(TRUE));
     $this->assertTrue($cls->getAbstract());
 }