class ReferenceTest in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/ReferenceTest.php \Symfony\Component\DependencyInjection\Tests\ReferenceTest
Hierarchy
- class \Symfony\Component\DependencyInjection\Tests\ReferenceTest extends \Symfony\Component\DependencyInjection\Tests\PHPUnit_Framework_TestCase
Expanded class hierarchy of ReferenceTest
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ ReferenceTest.php, line 16
Namespace
Symfony\Component\DependencyInjection\TestsView source
class ReferenceTest extends \PHPUnit_Framework_TestCase {
/**
* @covers Symfony\Component\DependencyInjection\Reference::__construct
*/
public function testConstructor() {
$ref = new Reference('foo');
$this
->assertEquals('foo', (string) $ref, '__construct() sets the id of the reference, which is used for the __toString() method');
}
public function testCaseInsensitive() {
$ref = new Reference('FooBar');
$this
->assertEquals('foobar', (string) $ref, 'the id is lowercased as the container is case insensitive');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ReferenceTest:: |
public | function | ||
ReferenceTest:: |
public | function | @covers Symfony\Component\DependencyInjection\Reference::__construct |