PathFieldDefinitionTest.php

Same filename and directory in other branches
  1. 9 core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php
  2. 10 core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php
  3. 11.x core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php

Namespace

Drupal\Tests\path\Unit\Field

File

core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php

View source
<?php

namespace Drupal\Tests\path\Unit\Field;

use Drupal\Tests\Core\Field\BaseFieldDefinitionTestBase;

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

}

Classes

Title Deprecated Summary
PathFieldDefinitionTest @coversDefaultClass \Drupal\Core\Field\BaseFieldDefinition @group path

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