public function FileDriverTest::testGetAllClassNamesGlobalBasename in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ FileDriverTest.php, line 44
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testGetAllClassNamesGlobalBasename() {
$driver = new TestFileDriver($this
->newLocator());
$driver
->setGlobalBasename("global");
$classNames = $driver
->getAllClassNames();
$this
->assertEquals(array(
'stdGlobal',
'stdGlobal2',
), $classNames);
}