PhroznTest\Outputter\TestOutputterTest::testAssertNotInLogsFail PHP 메소드

testAssertNotInLogsFail() 공개 메소드

    public function testAssertNotInLogsFail()
    {
        $this->setExpectedException('PHPUnit_Framework_AssertionFailedError', 'this should produce error');
        $outputter = new Outputter($this);
        $outputter->stdout('this string exists');
        $outputter->assertNotInLogs('this string exists', 'this should produce error');
    }