protected function AggregatorTitleTest::setUp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/aggregator/src/Tests/AggregatorTitleTest.php \Drupal\aggregator\Tests\AggregatorTitleTest::setUp()
Performs setup tasks before each individual test method is run.
Overrides KernelTestBase::setUp
File
- core/
modules/ aggregator/ src/ Tests/ AggregatorTitleTest.php, line 39 - Contains \Drupal\aggregator\Tests\AggregatorTitleTest.
Class
- AggregatorTitleTest
- Tests the aggregator_title formatter.
Namespace
Drupal\aggregator\TestsCode
protected function setUp() {
parent::setUp();
$this
->installConfig([
'field',
]);
$this
->installEntitySchema('aggregator_feed');
$this
->installEntitySchema('aggregator_item');
$this->fieldName = 'title';
}