%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/conference/vendor/phpunit/phpunit/tests/Regression/GitHub/433/
Upload File :
Create Path :
Current File : /var/www/html/conference/vendor/phpunit/phpunit/tests/Regression/GitHub/433/Issue433Test.php

<?php
use PHPUnit\Framework\TestCase;

class Issue433Test extends 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');
    }
}

Zerion Mini Shell 1.0