Piwik\Plugins\TestRunner\Commands\TestsRunOnAws::buildFinishedMessage PHP Method

buildFinishedMessage() private method

private buildFinishedMessage ( $testSuite, $host )
    private function buildFinishedMessage($testSuite, $host)
    {
        if (in_array($testSuite, array('system', 'all'))) {
            $message = "<info>Tests finished. You can browse processed files and download artifacts at </info><comment>http://{$host}/tests/PHPUnit/System/processed/</comment>";
        } elseif ('ui' === $testSuite) {
            $message = "<info>Tests finished. You can browse processed screenshots at </info><comment>http://{$host}/tests/UI/screenshot-diffs/diffviewer.html</comment>";
        } else {
            $message = "<info>Tests finished</info>";
        }
        return $message;
    }