You are here

public function BreakpointTest::testGetLabel in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/breakpoint/tests/src/Unit/BreakpointTest.php \Drupal\Tests\breakpoint\Unit\BreakpointTest::testGetLabel()

@covers ::getLabel

File

core/modules/breakpoint/tests/src/Unit/BreakpointTest.php, line 62

Class

BreakpointTest
@coversDefaultClass \Drupal\breakpoint\Breakpoint @group Breakpoint

Namespace

Drupal\Tests\breakpoint\Unit

Code

public function testGetLabel() {
  $this->pluginDefinition['label'] = 'Test label';
  $this
    ->setupBreakpoint();
  $this
    ->assertEquals(new TranslatableMarkup('Test label', [], [
    'context' => 'breakpoint',
  ], $this->stringTranslation), $this->breakpoint
    ->getLabel());
}