You are here

public function AggregatorTestBase::enableTestPlugins in Drupal 8

Same name in this branch
  1. 8 core/modules/aggregator/src/Tests/AggregatorTestBase.php \Drupal\aggregator\Tests\AggregatorTestBase::enableTestPlugins()
  2. 8 core/modules/aggregator/tests/src/Functional/AggregatorTestBase.php \Drupal\Tests\aggregator\Functional\AggregatorTestBase::enableTestPlugins()

Enable the plugins coming with aggregator_test module.

File

core/modules/aggregator/src/Tests/AggregatorTestBase.php, line 392

Class

AggregatorTestBase
Defines a base class for testing the Aggregator module.

Namespace

Drupal\aggregator\Tests

Code

public function enableTestPlugins() {
  $this
    ->config('aggregator.settings')
    ->set('fetcher', 'aggregator_test_fetcher')
    ->set('parser', 'aggregator_test_parser')
    ->set('processors', [
    'aggregator_test_processor' => 'aggregator_test_processor',
    'aggregator' => 'aggregator',
  ])
    ->save();
}