You are here

public function DrupalTest::testEntityManager in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/DrupalTest.php \Drupal\Tests\Core\DrupalTest::testEntityManager()

Tests the entityManager() method.

@covers ::entityManager

File

core/tests/Drupal/Tests/Core/DrupalTest.php, line 84
Contains \Drupal\Tests\Core\DrupalTest.

Class

DrupalTest
Tests the Drupal class.

Namespace

Drupal\Tests\Core

Code

public function testEntityManager() {
  $this
    ->setMockContainerService('entity.manager');
  $this
    ->assertNotNull(\Drupal::entityManager());
}