public function ReferenceTest::testCaseInsensitive

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/ReferenceTest.php, line 27

Class

ReferenceTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testCaseInsensitive() {
  $ref = new Reference('FooBar');
  $this
    ->assertEquals('foobar', (string) $ref, 'the id is lowercased as the container is case insensitive');
}