public function FileDriverTest::testGlobalBasename in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/FileDriverTest.php \Doctrine\Tests\Common\Persistence\Mapping\FileDriverTest::testGlobalBasename()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ FileDriverTest.php, line 11
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testGlobalBasename() {
$driver = new TestFileDriver(array());
$this
->assertNull($driver
->getGlobalBasename());
$driver
->setGlobalBasename("global");
$this
->assertEquals("global", $driver
->getGlobalBasename());
}