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