%PDF- %PDF-
Direktori : /proc/self/root/var/www/html/zgjedhjet2017/vendor/phpunit/phpunit/tests/_files/ |
Current File : //proc/self/root/var/www/html/zgjedhjet2017/vendor/phpunit/phpunit/tests/_files/OutputTestCase.php |
<?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'; } }