You are here

protected function FilterAPITest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/filter/src/Tests/FilterAPITest.php \Drupal\filter\Tests\FilterAPITest::setUp()

Performs setup tasks before each individual test method is run.

Overrides EntityUnitTestBase::setUp

File

core/modules/filter/src/Tests/FilterAPITest.php, line 28
Contains \Drupal\filter\Tests\FilterAPITest.

Class

FilterAPITest
Tests the behavior of the API of the Filter module.

Namespace

Drupal\filter\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installConfig(array(
    'system',
    'filter',
    'filter_test',
  ));
}