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