You are here

protected function TextSummaryTest::setUp in Zircon Profile 8

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

Performs setup tasks before each individual test method is run.

Overrides KernelTestBase::setUp

File

core/modules/text/src/Tests/TextSummaryTest.php, line 21
Contains \Drupal\text\Tests\TextSummaryTest.

Class

TextSummaryTest
Tests text_summary() with different strings and lengths.

Namespace

Drupal\text\Tests

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installSchema('system', 'url_alias');
  $this
    ->installConfig(array(
    'text',
  ));
}