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