You are here

class ParameterTest in Zircon Profile 8.0

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