FieldTypeCategoryDiscoveryTest.php

Namespace

Drupal\Tests\field\Kernel

File

core/modules/field/tests/src/Kernel/FieldTypeCategoryDiscoveryTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\field\Kernel;

use Drupal\KernelTests\KernelTestBase;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;

/**
 * Tests discovery of field type categories provided by modules.
 */
class FieldTypeCategoryDiscoveryTest extends KernelTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'field_plugins_test',
  ];
  
  /**
   * Tests custom field type categories created by modules.
   */
  public function testFieldTypeCategories() : void {
    $category = \Drupal::service('plugin.manager.field.field_type_category')->createInstance('test_category');
    $expected = [
      'Test category',
      'This is a test field type category.',
      -10,
      [
        'field_plugins_test/test_library',
      ],
    ];
    $this->assertSame($expected, [
      (string) $category->getLabel(),
      (string) $category->getDescription(),
      $category->getWeight(),
      $category->getLibraries(),
    ]);
  }

}

Classes

Title Deprecated Summary
FieldTypeCategoryDiscoveryTest Tests discovery of field type categories provided by modules.

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