ILIAS  release_8 Revision v8.24
ilServicesTreeSuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
21/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
22
23use PHPUnit\Framework\TestSuite;
24
25class ilServicesTreeSuite extends TestSuite
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}