Exemple #1
0
 public function testAbstractAccess()
 {
     $meth = new \vc\Data\Routine\Method(123);
     $this->assertFalse($meth->getAbstract());
     $this->assertSame($meth, $meth->setAbstract(TRUE));
     $this->assertTrue($meth->getAbstract());
 }