You are here

public function OutputTestCase::testExpectOutputStringFooActualBar in Zircon Profile 8.0

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

File

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

Class

OutputTestCase

Code

public function testExpectOutputStringFooActualBar() {
  $this
    ->expectOutputString('foo');
  print 'bar';
}