You are here

protected function FeedsItemFormatterTestBase::setUp in Feeds 8.3

Overrides FeedsBrowserTestBase::setUp

5 calls to FeedsItemFormatterTestBase::setUp()
FeedsItemGuidFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemGuidFormatterTest.php
FeedsItemImportedFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemImportedFormatterTest.php
FeedsItemTargetEntityFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemTargetEntityFormatterTest.php
FeedsItemTargetIdFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemTargetIdFormatterTest.php
FeedsItemTargetLabelFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemTargetLabelFormatterTest.php
5 methods override FeedsItemFormatterTestBase::setUp()
FeedsItemGuidFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemGuidFormatterTest.php
FeedsItemImportedFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemImportedFormatterTest.php
FeedsItemTargetEntityFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemTargetEntityFormatterTest.php
FeedsItemTargetIdFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemTargetIdFormatterTest.php
FeedsItemTargetLabelFormatterTest::setUp in tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemTargetLabelFormatterTest.php

File

tests/src/Functional/Plugin/Field/FieldFormatter/FeedsItemFormatterTestBase.php, line 29

Class

FeedsItemFormatterTestBase
Base class for the feeds item field formatter tests.

Namespace

Drupal\Tests\feeds\Functional\Plugin\Field\FieldFormatter

Code

protected function setUp() {
  parent::setUp();

  // Create feeds_item field.
  $this
    ->createFieldWithStorage('feeds_item', [
    'type' => 'feeds_item',
    'label' => 'Feeds item',
  ]);
}