
| Current Path : /var/www/html/rocksensor1/web/core/modules/path/tests/src/Unit/Field/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/path/tests/src/Unit/Field/PathFieldDefinitionTest.php |
<?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(): string {
return 'path';
}
/**
* {@inheritdoc}
*/
protected function getModuleAndPath() {
return ['path', dirname(__DIR__, 4)];
}
/**
* @covers ::getColumns
* @covers ::getSchema
*/
public function testGetColumns(): void {
$this->assertSame([], $this->definition->getColumns());
}
}