You are here

public function ContainerTest::test_get_notFoundMultiple in Service Container 7.2

Same name and namespace in other branches
  1. 7 tests/src/DependencyInjection/ContainerTest.php \Drupal\Tests\service_container\DependencyInjection\ContainerTest::test_get_notFoundMultiple()

Tests multiple Container::get() calls for non-existing dependencies work.

@covers ::get()

File

tests/src/DependencyInjection/ContainerTest.php, line 262
Contains \Drupal\Tests\service_container\DependencyInjection\ContainerTest

Class

ContainerTest
@coversDefaultClass \Drupal\service_container\DependencyInjection\Container @group dic

Namespace

Drupal\Tests\service_container\DependencyInjection

Code

public function test_get_notFoundMultiple() {
  $container = \Mockery::mock('Drupal\\service_container\\DependencyInjection\\Container[getDefinition]', array(
    $this->containerDefinition,
  ));
  $this
    ->assertNull($container
    ->get('service_not_exists', ContainerInterface::NULL_ON_INVALID_REFERENCE, 'Not found service does not throw exception.'));
  $this
    ->assertNull($container
    ->get('service_not_exists', ContainerInterface::NULL_ON_INVALID_REFERENCE, 'Not found service does not throw exception on second call.'));
}