You are here

public function Issue445Test::testOutputWithExpectationBefore in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/Regression/GitHub/445/Issue445Test.php \Issue445Test::testOutputWithExpectationBefore()

File

vendor/phpunit/phpunit/tests/Regression/GitHub/445/Issue445Test.php, line 4

Class

Issue445Test

Code

public function testOutputWithExpectationBefore() {
  $this
    ->expectOutputString('test');
  print 'test';
}