EricMakesStuff\ServerMonitor\Test\Integration\TestCase::doNotSeeInConsoleOutput PHP Method

doNotSeeInConsoleOutput() protected method

protected doNotSeeInConsoleOutput ( $unExpectedText )
    protected function doNotSeeInConsoleOutput($unExpectedText)
    {
        $consoleOutput = $this->app[Kernel::class]->output();
        $this->assertNotContains($unExpectedText, $consoleOutput, "Did not expect to see `{$unExpectedText}` in console output: `{$consoleOutput}`");
    }