public function testGetConstant()
 {
     $constValue = $this->parsedRefFileNamespace->getConstant('Unknown');
     $this->assertFalse($constValue);
     $constValue = $this->parsedRefFileNamespace->getConstant('NAMESPACE_NAME');
     $this->assertNotFalse($constValue);
     $this->assertEquals(\Go\ParserReflection\Stub\NAMESPACE_NAME, $constValue);
 }