public function OutputTestCase::testExpectOutputRegexFooActualBar in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/_files/OutputTestCase.php \OutputTestCase::testExpectOutputRegexFooActualBar()
File
- vendor/
phpunit/ phpunit/ tests/ _files/ OutputTestCase.php, line 22
Class
Code
public function testExpectOutputRegexFooActualBar() {
$this
->expectOutputRegex('/foo/');
print 'bar';
}