/**
  * Test if the `getClassContext` method returns a class name with the property.
  */
 public function testGetParseContext()
 {
     $property = new ReflectionProperty(self::FIXTURE_NS . '\\ClassWithProperties', 'foo');
     $this->assertEquals(self::FIXTURE_NS . '\\ClassWithProperties::$foo', $property->getParseContext());
 }