class ParameterTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/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
- vendor/
symfony/ dependency-injection/ 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 |