Issue433Test.php in Zircon Profile 8
Same filename and directory in other branches
File
vendor/phpunit/phpunit/tests/Regression/GitHub/433/Issue433Test.phpView source
<?php
class Issue433Test 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');
}
}
Classes
Name | Description |
---|---|
Issue433Test |