You are here

public function EntityTypeTest::testHasFormClasses in Drupal 10

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

Tests the hasFormClasses() method.

File

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

Class

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

Namespace

Drupal\Tests\Core\Entity

Code

public function testHasFormClasses() {
  $controller = $this
    ->getTestHandlerClass();
  $operation = 'default';
  $entity_type1 = $this
    ->setUpEntityType([
    'handlers' => [
      'form' => [
        $operation => $controller,
      ],
    ],
  ]);
  $entity_type2 = $this
    ->setUpEntityType([
    'handlers' => [],
  ]);
  $this
    ->assertTrue($entity_type1
    ->hasFormClasses());
  $this
    ->assertFalse($entity_type2
    ->hasFormClasses());
}