You are here

public function OutputTestCase::testExpectOutputStringFooActualFoo in Zircon Profile 8.0

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

File

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

Class

OutputTestCase

Code

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