You are here

public function EntityTypeTest::providerTestGetBundleLabel in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php \Drupal\Tests\Core\Entity\EntityTypeTest::providerTestGetBundleLabel()

Provides test data for ::testGetBundleLabel().

File

core/tests/Drupal/Tests/Core/Entity/EntityTypeTest.php, line 435

Class

EntityTypeTest
@coversDefaultClass \Drupal\Core\Entity\EntityType @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

public function providerTestGetBundleLabel() {
  return [
    [
      [
        'label' => 'Entity Label Foo',
      ],
      'Entity Label Foo bundle',
    ],
    [
      [
        'bundle_label' => 'Bundle Label Bar',
      ],
      'Bundle Label Bar',
    ],
  ];
}