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