function BuildTestBase::assertErrorOutputContains

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/BuildTests/Framework/BuildTestBase.php \Drupal\BuildTests\Framework\BuildTestBase::assertErrorOutputContains()

Assert that text is present in the error output of the most recent command.

Parameters

string $expected: Text we expect to find in the error output of the command.

File

core/tests/Drupal/BuildTests/Framework/BuildTestBase.php, line 271

Class

BuildTestBase
Provides a workspace to test build processes.

Namespace

Drupal\BuildTests\Framework

Code

public function assertErrorOutputContains($expected) {
  $this->assertStringContainsString($expected, $this->commandProcess
    ->getErrorOutput());
}

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