ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilServicesDashboardSuite.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 require_once 'libs/composer/vendor/autoload.php';
24 
26 {
27  public static function suite()
28  {
29  $suite = new self();
30 
31  require_once('./Services/Dashboard/test/DashboardViewSettingsTest.php');
32  $suite->addTestSuite(DashboardViewSettingsTest::class);
33 
34  return $suite;
35  }
36 }