FOS\UserBundle\Tests\DependencyInjection\FOSUserExtensionTest::testUserLoadThrowsExceptionUnlessDatabaseDriverSet PHP Method

testUserLoadThrowsExceptionUnlessDatabaseDriverSet() public method

    public function testUserLoadThrowsExceptionUnlessDatabaseDriverSet()
    {
        $loader = new FOSUserExtension();
        $config = $this->getEmptyConfig();
        unset($config['db_driver']);
        $loader->load(array($config), new ContainerBuilder());
    }