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