function AssertContentTraitTest::testGetTextContent

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/Tests/Core/Test/AssertContentTraitTest.php \Drupal\Tests\Core\Test\AssertContentTraitTest::testGetTextContent()
  2. 10 core/tests/Drupal/Tests/Core/Test/AssertContentTraitTest.php \Drupal\Tests\Core\Test\AssertContentTraitTest::testGetTextContent()
  3. 9 core/tests/Drupal/Tests/Core/Test/AssertContentTraitTest.php \Drupal\Tests\Core\Test\AssertContentTraitTest::testGetTextContent()
  4. 8.9.x core/tests/Drupal/Tests/Core/Test/AssertContentTraitTest.php \Drupal\Tests\Core\Test\AssertContentTraitTest::testGetTextContent()

Tests get text content.

File

core/tests/Drupal/Tests/Core/Test/AssertContentTraitTest.php, line 24

Class

AssertContentTraitTest
Tests Drupal\KernelTests\AssertContentTrait.

Namespace

Drupal\Tests\Core\Test

Code

public function testGetTextContent() : void {
  $raw_content = <<<EOT
  
  <Head>
  <style>
  @import url("foo.css");
  </style>
  </head>
  <body>
  bar
  </body>
  EOT;
  $this->setRawContent($raw_content);
  $this->assertStringNotContainsString('foo', $this->getTextContent());
  $this->assertStringNotContainsString('<body>', $this->getTextContent());
  $this->assertStringContainsString('bar', $this->getTextContent());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.