class PathFieldDefinitionTest

Same name and namespace in other branches
  1. 11.x core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php \Drupal\Tests\path\Unit\Field\PathFieldDefinitionTest
  2. 10 core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php \Drupal\Tests\path\Unit\Field\PathFieldDefinitionTest
  3. 8.9.x core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php \Drupal\Tests\path\Unit\Field\PathFieldDefinitionTest

@coversDefaultClass \Drupal\Core\Field\BaseFieldDefinition
@group path

Hierarchy

Expanded class hierarchy of PathFieldDefinitionTest

File

core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php, line 11

Namespace

Drupal\Tests\path\Unit\Field
View source
class PathFieldDefinitionTest extends BaseFieldDefinitionTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected function getPluginId() {
    return 'path';
  }
  
  /**
   * {@inheritdoc}
   */
  protected function getModuleAndPath() {
    return [
      'path',
      dirname(__DIR__, 4),
    ];
  }
  
  /**
   * @covers ::getColumns
   * @covers ::getSchema
   */
  public function testGetColumns() {
    $this->assertSame([], $this->definition
      ->getColumns());
  }

}

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