Current File : //opt/RZphp72/includes/test/System_Daemon/tests/inbackground.phpt
--TEST--
--SKIPIF--
<?php 
if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test is for non-Windows platforms only");
?>
--FILE--
<?php

require_once 'tests-config.php';
require_once 'System/Daemon.php';

System_Daemon::setOption("appName", "test");
System_Daemon::setOption("logVerbosity", System_Daemon::LOG_EMERG);

$res = System_Daemon::isInBackground();
var_dump($res);

?>
--EXPECT--
bool(false)