Example #1
0
 /**
  * Test if the `getClassContext` method returns a class name.
  */
 public function testGetClassContext()
 {
     $className = self::FIXTURE_NS . '\\ClassWithMultipleUseStatements';
     $class = new ReflectionClass($className);
     $this->assertEquals($className, $class->getClassContext());
 }