mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 02:08:40 +00:00
38 lines
956 B
PHP
38 lines
956 B
PHP
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Utils\TaskSchedule;
|
|
|
|
use phpOMS\Utils\TaskSchedule\Cron;
|
|
use phpOMS\Utils\TaskSchedule\SchedulerFactory;
|
|
use phpOMS\Utils\TaskSchedule\TaskScheduler;
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Utils\TaskSchedule\SchedulerFactoryTest: Scheduler factory for creating cron/task handlers
|
|
*
|
|
* @internal
|
|
*/
|
|
final class SchedulerFactoryTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox The correct scheduler is crated depending on the operating system
|
|
* @covers phpOMS\Utils\TaskSchedule\SchedulerFactory
|
|
* @group framework
|
|
*/
|
|
public function testCreate() : void
|
|
{
|
|
self::assertTrue((SchedulerFactory::create() instanceof Cron) || (SchedulerFactory::create() instanceof TaskScheduler));
|
|
}
|
|
}
|