public function OutputTestCase::testExpectOutputStringFooActualFoo

File

drupal/core/vendor/phpunit/phpunit/Tests/_files/OutputTestCase.php, line 4

Class

OutputTestCase

Code

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