public function SymfonyFileLocatorTest::testInvalidCustomNamespaceSeparator in Plug 7
@expectedException \InvalidArgumentException @expectedExceptionMessage Namespace separator should not be empty
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ SymfonyFileLocatorTest.php, line 69
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
public function testInvalidCustomNamespaceSeparator() {
$path = __DIR__ . "/_files";
$prefix = "Foo";
new SymfonyFileLocator(array(
$path => $prefix,
), ".yml", null);
}