You are here

public function ClassUtilsTest::testGetParentClass in Plug 7

File

lib/doctrine/common/tests/Doctrine/Tests/Common/Util/ClassUtilsTest.php, line 38

Class

ClassUtilsTest

Namespace

Doctrine\Tests\Common\Util

Code

public function testGetParentClass() {
  $parentClass = ClassUtils::getParentClass('MyProject\\Proxies\\__CG__\\OtherProject\\Proxies\\__CG__\\Doctrine\\Tests\\Common\\Util\\ChildObject');
  $this
    ->assertEquals('stdClass', $parentClass);
}