You are here

public static function ClassUtilsTest::dataGetClass in Plug 7

File

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

Class

ClassUtilsTest

Namespace

Doctrine\Tests\Common\Util

Code

public static function dataGetClass() {
  return array(
    array(
      'stdClass',
      'stdClass',
    ),
    array(
      'Doctrine\\Common\\Util\\ClassUtils',
      'Doctrine\\Common\\Util\\ClassUtils',
    ),
    array(
      'MyProject\\Proxies\\__CG__\\stdClass',
      'stdClass',
    ),
    array(
      'MyProject\\Proxies\\__CG__\\OtherProject\\Proxies\\__CG__\\stdClass',
      'stdClass',
    ),
    array(
      'MyProject\\Proxies\\__CG__\\Doctrine\\Tests\\Common\\Util\\ChildObject',
      'Doctrine\\Tests\\Common\\Util\\ChildObject',
    ),
  );
}