NormalizerTestBase.php in Drupal 9
File
core/modules/serialization/tests/src/Kernel/NormalizerTestBase.php
View source
<?php
namespace Drupal\Tests\serialization\Kernel;
use Drupal\KernelTests\KernelTestBase;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
abstract class NormalizerTestBase extends KernelTestBase {
protected static $modules = [
'serialization',
'system',
'field',
'entity_test',
'text',
'filter',
'user',
];
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('entity_test_mulrev');
$this
->installEntitySchema('user');
$this
->installConfig([
'field',
]);
\Drupal::moduleHandler()
->invoke('rest', 'install');
FieldStorageConfig::create([
'entity_type' => 'entity_test_mulrev',
'field_name' => 'field_test_text',
'type' => 'text',
'cardinality' => 1,
'translatable' => FALSE,
])
->save();
FieldConfig::create([
'entity_type' => 'entity_test_mulrev',
'field_name' => 'field_test_text',
'bundle' => 'entity_test_mulrev',
'label' => 'Test text-field',
'widget' => [
'type' => 'text_textfield',
'weight' => 0,
],
])
->save();
}
}