function FieldFieldTest::testFieldAlias
Tests the result of a view with complex field configuration.
A complex field configuration contains multiple times the same field, with different delta limit / offset.
File
- 
              core/
modules/ views/ tests/ src/ Kernel/ Handler/ FieldFieldTest.php, line 304  
Class
- FieldFieldTest
 - Provides some integration tests for the Field handler.
 
Namespace
Drupal\Tests\views\Kernel\HandlerCode
public function testFieldAlias() {
  $executable = Views::getView('test_field_alias_test');
  $executable->execute();
  $this->assertInstanceOf(EntityField::class, $executable->field['id']);
  $this->assertInstanceOf(EntityField::class, $executable->field['name']);
  $this->assertInstanceOf(EntityField::class, $executable->field['name_alias']);
  $this->assertIdenticalResultset($executable, [
    [
      'id' => 1,
      'name' => 'test 0',
      'name_alias' => 'test 0',
    ],
    [
      'id' => 2,
      'name' => 'test 1',
      'name_alias' => 'test 1',
    ],
    [
      'id' => 3,
      'name' => 'test 2',
      'name_alias' => 'test 2',
    ],
    [
      'id' => 4,
      'name' => 'test 3',
      'name_alias' => 'test 3',
    ],
    [
      'id' => 5,
      'name' => 'test 4',
      'name_alias' => 'test 4',
    ],
  ], [
    'id' => 'id',
    'name' => 'name',
    'name_alias' => 'name_alias',
  ]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.