function DefaultTableMappingTest::testGetFieldColumnName

Tests DefaultTableMapping::getFieldColumnName() with valid parameters.

@legacy-covers ::getFieldColumnName

Attributes

#[DataProvider('providerTestGetFieldColumnName')]

Parameters

bool $base_field: Flag indicating whether the field should be treated as a base or bundle field.

string[] $columns: An array of available field column names.

string $column: The name of the column to be processed.

string $expected: The expected result.

File

core/tests/Drupal/Tests/Core/Entity/Sql/DefaultTableMappingTest.php, line 284

Class

DefaultTableMappingTest
Tests Drupal\Core\Entity\Sql\DefaultTableMapping.

Namespace

Drupal\Tests\Core\Entity\Sql

Code

public function testGetFieldColumnName($base_field, $columns, $column, $expected) : void {
  $definitions['test'] = $this->setUpDefinition('test', $columns, $base_field);
  $table_mapping = new TestDefaultTableMapping($this->entityType, $definitions);
  $result = $table_mapping->getFieldColumnName($definitions['test'], $column);
  $this->assertEquals($expected, $result);
}

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