/**
  */
 public function testGetConstant()
 {
     $prop = new ReflectionConstant('test', "value");
     $this->object->addConstant($prop);
     $this->assertEquals($prop, $this->object->getConstant('test'));
 }