public function FileDriverTest::testGetAllClassNamesFromMappingFile in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ FileDriverTest.php, line 54
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testGetAllClassNamesFromMappingFile() {
$locator = $this
->newLocator();
$locator
->expects($this
->any())
->method('getAllClassNames')
->with($this
->equalTo(null))
->will($this
->returnValue(array(
'stdClass',
)));
$driver = new TestFileDriver($locator);
$classNames = $driver
->getAllClassNames();
$this
->assertEquals(array(
'stdClass',
), $classNames);
}