Joli\JoliNotif\tests\Notifier\TerminalNotifierNotifierTest::getExpectedCommandLineForNotificationWithAllOptions PHP 메소드

getExpectedCommandLineForNotificationWithAllOptions() 보호된 메소드

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