예제 #1
0
 public function testLoad()
 {
     $extension = new \ProjectExtension();
     try {
         $extension->load('foo', array());
         $this->fail('->load() throws an InvalidArgumentException if the tag does not exist');
     } catch (\InvalidArgumentException $e) {
     }
     $config = $extension->load('bar', array('foo' => 'bar'));
     $this->assertEquals($config->getParameters(), array('project.parameter.bar' => 'bar'), '->load() calls the method tied to the given tag');
 }
예제 #2
0
 public function testLoad()
 {
     $extension = new \ProjectExtension();
     try {
         $extension->load('foo', array(), new BuilderConfiguration());
         $this->fail('->load() throws an InvalidArgumentException if the tag does not exist');
     } catch (\Exception $e) {
         $this->assertInstanceOf('\\InvalidArgumentException', $e, '->load() throws an InvalidArgumentException if the tag does not exist');
         $this->assertEquals('The tag "project:foo" is not defined in the "project" extension.', $e->getMessage(), '->load() throws an InvalidArgumentException if the tag does not exist');
     }
     $config = $extension->load('bar', array('foo' => 'bar'), new BuilderConfiguration());
     $this->assertEquals(array('project.parameter.bar' => 'bar', 'project.parameter.foo' => 'bar'), $config->getParameters(), '->load() calls the method tied to the given tag');
 }
<?php

/*
 * This file is part of the symfony package.
 * (c) Fabien Potencier <*****@*****.**>
 * 
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
require_once __DIR__ . '/../../../../bootstrap.php';
require_once __DIR__ . '/../../../../../fixtures/Symfony/Components/DependencyInjection/includes/ProjectExtension.php';
$t = new LimeTest(2);
// ->load()
$t->diag('->load()');
$extension = new ProjectExtension();
try {
    $extension->load('foo', array());
    $t->fail('->load() throws an InvalidArgumentException if the tag does not exist');
} catch (InvalidArgumentException $e) {
    $t->pass('->load() throws an InvalidArgumentException if the tag does not exist');
}
$config = $extension->load('bar', array('foo' => 'bar'));
$t->is($config->getParameters(), array('project.parameter.bar' => 'bar'), '->load() calls the method tied to the given tag');