ILIAS  release_8 Revision v8.23
ilServicesTreeSuite.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
21 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
22 
24 
26 {
27  public static function suite(): self
28  {
29  $suite = new self();
30 
31  include_once './Services/Tree/test/ilRepositoryTreeTest.php';
32  $suite->addTestSuite(ilRepositoryTreeTest::class);
33  return $suite;
34  }
35 }