/
var
/
www
/
vhosts
/
nabawater
/
vendor
/
phpunit
/
phpunit
/
tests
/
Regression
/
GitHub
/
445
/
/var/www/vhosts/nabawater/vendor/phpunit/phpunit/tests/Regression/GitHub/445
mkdir
upload
Name
Size
Mode
Actions
Issue445Test.php
446
0664
edit
dl
rm
Edit:
/var/www/vhosts/nabawater/vendor/phpunit/phpunit/tests/Regression/GitHub/445/Issue445Test.php
(446B)
<?php class Issue445Test extends PHPUnit_Framework_TestCase { public function testOutputWithExpectationBefore() { $this->expectOutputString('test'); print 'test'; } public function testOutputWithExpectationAfter() { print 'test'; $this->expectOutputString('test'); } public function testNotMatchingOutput() { print 'bar'; $this->expectOutputString('foo'); } }
Save
cmd:
run