PhroznTest\Outputter\TestOutputterTest::testStdErr PHP Method

testStdErr() public method

public testStdErr ( )
    public function testStdErr()
    {
        $outputter = new Outputter($this);
        $outputter->assertNotInLogs('sending output');
        $outputter->stderr('sending output');
        $outputter->assertInLogs('sending output');
    }