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