/**
  * Test if the `getDeclaringClass` return a `ReflectionClass` object.
  */
 public function testGetDeclaringClass()
 {
     $property = new ReflectionProperty(self::FIXTURE_NS . '\\ClassWithProperties', 'foo');
     $this->assertInstanceOf('com\\mohiva\\common\\lang\\ReflectionClass', $property->getDeclaringClass());
 }