Joli\JoliNotif\tests\Notifier\TerminalNotifierNotifierTest::getExpectedCommandLineForNotificationWithAnIcon PHP Method

getExpectedCommandLineForNotificationWithAnIcon() protected method

    protected function getExpectedCommandLineForNotificationWithAnIcon()
    {
        if (OsHelper::isMacOS() && version_compare(OsHelper::getMacOSVersion(), '10.9.0', '>=')) {
            return <<<CLI
'terminal-notifier' '-message' 'I'\\''m the notification body' '-appIcon' '/home/toto/Images/my-icon.png'
CLI;
        }
        return <<<CLI
'terminal-notifier' '-message' 'I'\\''m the notification body'
CLI;
    }