function EntityTypeTest::testGetSingularLabelDefault

Tests get singular label default.

@legacy-covers ::getSingularLabel

File

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

Class

EntityTypeTest
Tests Drupal\Core\Entity\EntityType.

Namespace

Drupal\Tests\Core\Entity

Code

public function testGetSingularLabelDefault() : void {
  $entity_type = $this->setUpEntityType([
    'label' => 'Entity test Singular',
  ]);
  $entity_type->setStringTranslation($this->getStringTranslationStub());
  $this->assertEquals('entity test singular', $entity_type->getSingularLabel());
}

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