public function FileDriverTest::testGetAllClassNamesFromMappingFile

File

drupal/core/vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/FileDriverTest.php, line 54

Class

FileDriverTest

Namespace

Doctrine\Tests\Common\Persistence\Mapping

Code

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);
}