D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
/
Filename :
OutputTestCase.php
back
Copy
<?php class OutputTestCase extends PHPUnit_Framework_TestCase { public function testExpectOutputStringFooActualFoo() { $this->expectOutputString('foo'); print 'foo'; } public function testExpectOutputStringFooActualBar() { $this->expectOutputString('foo'); print 'bar'; } public function testExpectOutputRegexFooActualFoo() { $this->expectOutputRegex('/foo/'); print 'foo'; } public function testExpectOutputRegexFooActualBar() { $this->expectOutputRegex('/foo/'); print 'bar'; } }