function EntityDisplayBaseTest::testSetTargetBundle

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php \Drupal\Tests\Core\Config\Entity\EntityDisplayBaseTest::testSetTargetBundle()
  2. 10 core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php \Drupal\Tests\Core\Config\Entity\EntityDisplayBaseTest::testSetTargetBundle()
  3. 11.x core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php \Drupal\Tests\Core\Config\Entity\EntityDisplayBaseTest::testSetTargetBundle()

@covers ::setTargetBundle

File

core/tests/Drupal/Tests/Core/Config/Entity/EntityDisplayBaseTest.php, line 61

Class

EntityDisplayBaseTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Entity%21EntityDisplayBase.php/class/EntityDisplayBase/9" title="Provides a common base class for entity view and form displays." class="local">\Drupal\Core\Entity\EntityDisplayBase</a>

Namespace

Drupal\Tests\Core\Config\Entity

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.