FieldTypeTest.php in Drupal 10
File
core/modules/block_content/tests/src/Functional/Views/FieldTypeTest.php
View source
<?php
namespace Drupal\Tests\block_content\Functional\Views;
use Drupal\views\Views;
class FieldTypeTest extends BlockContentTestBase {
protected $defaultTheme = 'stark';
public static $testViews = [
'test_field_type',
];
public function testFieldType() {
$block_content = $this
->createBlockContent();
$expected_result[] = [
'id' => $block_content
->id(),
'type' => $block_content
->bundle(),
];
$column_map = [
'id' => 'id',
'type:target_id' => 'type',
];
$view = Views::getView('test_field_type');
$this
->executeView($view);
$this
->assertIdenticalResultset($view, $expected_result, $column_map, 'The correct block_content type was displayed.');
}
}
Classes
Name |
Description |
FieldTypeTest |
Tests the Drupal\block_content\Plugin\views\field\Type handler. |