public function ClassUtilsTest::testNewReflectionClass in Plug 7
@dataProvider dataGetClass
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Util/ ClassUtilsTest.php, line 52
Class
Namespace
Doctrine\Tests\Common\UtilCode
public function testNewReflectionClass($className, $expectedClassName) {
$reflClass = ClassUtils::newReflectionClass($className);
$this
->assertEquals($expectedClassName, $reflClass
->getName());
}