You are here

public function OutputTestCase::testExpectOutputRegexFooActualFoo in Zircon Profile 8

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

File

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

Class

OutputTestCase

Code

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