OptionsFieldUnitTestBase.php in Zircon Profile 8.0
File
core/modules/options/src/Tests/OptionsFieldUnitTestBase.php
View source
<?php
namespace Drupal\options\Tests;
use Drupal\field\Tests\FieldUnitTestBase;
abstract class OptionsFieldUnitTestBase extends FieldUnitTestBase {
public static $modules = array(
'options',
);
protected $fieldName = 'test_options';
protected $fieldStorageDefinition;
protected $fieldStorage;
protected $field;
protected function setUp() {
parent::setUp();
$this->container
->get('router.builder')
->rebuild();
$this->fieldStorageDefinition = array(
'field_name' => $this->fieldName,
'entity_type' => 'entity_test',
'type' => 'list_integer',
'cardinality' => 1,
'settings' => array(
'allowed_values' => array(
1 => 'One',
2 => 'Two',
3 => 'Three',
),
),
);
$this->fieldStorage = entity_create('field_storage_config', $this->fieldStorageDefinition);
$this->fieldStorage
->save();
$this->field = entity_create('field_config', array(
'field_storage' => $this->fieldStorage,
'bundle' => 'entity_test',
));
$this->field
->save();
entity_get_form_display('entity_test', 'entity_test', 'default')
->setComponent($this->fieldName, array(
'type' => 'options_buttons',
))
->save();
}
}