ILIAS  release_8 Revision v8.23
ilServicesSystemCheckSuite.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
6 
8 
10 {
11  public static function suite(): self
12  {
13  $suite = new ilServicesSystemCheckSuite();
14 
15  include_once("./Services/SystemCheck/test/ilSystemCheckTaskTest.php");
16  $suite->addTestSuite(ilSystemCheckTaskTest::class);
17  return $suite;
18  }
19 }