PathFieldDefinitionTest.php
Same filename in other branches
Namespace
Drupal\Tests\path\Unit\FieldFile
-
core/
modules/ path/ tests/ src/ Unit/ Field/ PathFieldDefinitionTest.php
View source
<?php
declare (strict_types=1);
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(__DIR__, 4),
];
}
/**
* @covers ::getColumns
* @covers ::getSchema
*/
public function testGetColumns() : void {
$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.