feeds-8.x-3.0-alpha1/tests/src/Unit/Feeds/Item/DynamicItemTest.php
tests/src/Unit/Feeds/Item/DynamicItemTest.php
<?php
namespace Drupal\Tests\feeds\Unit\Feeds\Item;
use Drupal\feeds\Feeds\Item\DynamicItem;
/**
* @coversDefaultClass \Drupal\feeds\Feeds\Item\DynamicItem
* @group feeds
*/
class DynamicItemTest extends ItemTestBase {
/**
* {@inheritdoc}
*/
public function setUp() {
parent::setUp();
$this->item = new DynamicItem();
}
}
