You are here

public function OutputTestCase::testExpectOutputRegexFooActualBar in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/OutputTestCase.php \OutputTestCase::testExpectOutputRegexFooActualBar()

File

vendor/phpunit/phpunit/tests/_files/OutputTestCase.php, line 22

Class

OutputTestCase

Code

public function testExpectOutputRegexFooActualBar() {
  $this
    ->expectOutputRegex('/foo/');
  print 'bar';
}