function AggregatorTestBase::enableTestPlugins

Enable the plugins coming with aggregator_test module.

3 calls to AggregatorTestBase::enableTestPlugins()
FeedFetcherPluginTest::setUp in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedFetcherPluginTest.php
Sets up a Drupal site for running functional and integration tests.
FeedProcessorPluginTest::setUp in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedProcessorPluginTest.php
Overrides \Drupal\simpletest\WebTestBase::setUp().
UpdateFeedItemTest::testUpdateFeedItem in drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedItemTest.php
Tests running "update items" from 'admin/config/services/aggregator' page.

File

drupal/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php, line 372
Definition of Drupal\aggregator\Tests\AggregatorTestBase.

Class

AggregatorTestBase
Defines a base class for testing the Aggregator module.

Namespace

Drupal\aggregator\Tests

Code

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