You are here

public function FieldBlockTest::testBuildException in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/tests/src/Kernel/FieldBlockTest.php \Drupal\Tests\layout_builder\Kernel\FieldBlockTest::testBuildException()
  2. 10 core/modules/layout_builder/tests/src/Kernel/FieldBlockTest.php \Drupal\Tests\layout_builder\Kernel\FieldBlockTest::testBuildException()

@covers ::build

File

core/modules/layout_builder/tests/src/Kernel/FieldBlockTest.php, line 290

Class

FieldBlockTest
@coversDefaultClass \Drupal\layout_builder\Plugin\Block\FieldBlock @group Field

Namespace

Drupal\Tests\layout_builder\Kernel

Code

public function testBuildException() {

  // In PHP 7.4 ReflectionClass cannot be serialized so this cannot be part of
  // providerTestBuild().
  $promise = new ThrowPromise(new \Exception('The exception message'));
  $this
    ->testBuild($promise, '', 'The field "%field" failed to render with the error of "%error".', [
    '%field' => 'the_field_name',
    '%error' => 'The exception message',
  ]);
}