You are here

class ParameterTest in Service Container 7.2

Same name and namespace in other branches
  1. 7 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\Tests
View 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