Ejemplo n.º 1
0
 public function testGetAttributes()
 {
     $this->object = new Accessor(new ExtendingObj());
     $this->assertEquals(3, count($this->object->getAttributes()));
     $this->assertTrue(in_array('myProp', $this->object->getAttributes()));
     $this->assertTrue(in_array('test', $this->object->getAttributes()));
 }