You are here

protected function ItemWithoutFeedTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php \Drupal\Tests\aggregator\Kernel\ItemWithoutFeedTest::setUp()

Overrides KernelTestBase::setUp

File

core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php, line 23

Class

ItemWithoutFeedTest
Tests clean handling of an item with a missing feed ID.

Namespace

Drupal\Tests\aggregator\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('aggregator_feed');
  $this
    ->installEntitySchema('aggregator_item');
}