You are here

public function EntityDisplayBaseTest::testGetTargetBundle in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php \Drupal\Tests\Core\Config\Entity\EntityDisplayBaseTest::testGetTargetBundle()

@covers ::getTargetBundle

File

core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php, line 55
Contains \Drupal\Tests\Core\Config\Entity\EntityDisplayBaseTest.

Class

EntityDisplayBaseTest
@coversDefaultClass \Drupal\Core\Entity\EntityDisplayBase

Namespace

Drupal\Tests\Core\Config\Entity

Code

public function testGetTargetBundle() {
  $mock = $this
    ->getMockForAbstractClass('\\Drupal\\Core\\Entity\\EntityDisplayBase', [], '', FALSE);
  $reflection = new \ReflectionProperty($mock, 'bundle');
  $reflection
    ->setAccessible(TRUE);
  $reflection
    ->setValue($mock, 'test');
  $this
    ->assertEquals('test', $mock
    ->getTargetBundle());
}