ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilServicesCronSuite.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
32  public static function suite(): self
33  {
34  $suite = new self();
35 
36  require_once __DIR__ . '/CronJobEntityTest.php';
37  $suite->addTestSuite(CronJobEntityTest::class);
38 
39  require_once __DIR__ . '/CronJobScheduleTest.php';
40  $suite->addTestSuite(CronJobScheduleTest::class);
41 
42  require_once __DIR__ . '/CronJobManagerTest.php';
43  $suite->addTestSuite(CronJobManagerTest::class);
44 
45  return $suite;
46  }
47 }
Class ilServicesCronSuite.