Joli\JoliNotif\tests\Notifier\AppleScriptNotifierTest::testIsSupported PHP Method

testIsSupported() public method

public testIsSupported ( )
    public function testIsSupported()
    {
        $notifier = $this->getNotifier();
        if (OsHelper::isMacOS() && version_compare(OsHelper::getMacOSVersion(), '10.9.0', '>=')) {
            $this->assertTrue($notifier->isSupported());
        } else {
            $this->assertFalse($notifier->isSupported());
        }
    }