mult1mate\crontab_tests\TaskManagerTest::testParseCrontab PHP Method

testParseCrontab() public method

public testParseCrontab ( )
    public function testParseCrontab()
    {
        $task = TaskMock::createNew();
        $cron = '
        #comment
        * * * * * cd path/; /usr/bin/php index.php controller method args 2>&1 > /dev/null
        * * * * -1 cd path/; /usr/bin/php index.php controller method args 2>&1 > /dev/null
        * * * * * cd path/; wrong expression';
        TaskManager::parseCrontab($cron, $task);
    }