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