File "Issue433Test.php"
Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/Regression/GitHub/433/Issue433Test.php
File size: 446 bytes
MIME-type: --
Charset: utf-8
<?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');
}
}