Set the default field storage backend for fields created during tests.
Overrides FieldTestBase::setUp
function setUp() {
parent::setUp();
// Create test user.
$admin_user = $this
->drupalCreateUser(array(
'access content',
'administer content types',
'administer taxonomy',
));
$this
->drupalLogin($admin_user);
// Create content type, with underscores.
$type_name = 'test_' . strtolower($this
->randomName());
$type = $this
->drupalCreateContentType(array(
'name' => $type_name,
'type' => $type_name,
));
$this->type = $type->type;
}