ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
ilServicesContainerSuite.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
use
PHPUnit\Framework\TestSuite
;
22
23
require_once
'libs/composer/vendor/autoload.php'
;
24
28
class
ilServicesContainerSuite
extends
TestSuite
29
{
30
public
static
function
suite
(): self
31
{
32
$suite =
new
self
();
33
34
/*
35
require_once("./Services/Container/test/ContentModeManagerTest.php");
36
$suite->addTestSuite("ContentModeManagerTest");
37
*/
38
39
require_once(
"./Services/Container/test/Classification/ClassificationSessionRepositoryTest.php"
);
40
$suite->addTestSuite(
"ClassificationSessionRepositoryTest"
);
41
42
return
$suite;
43
}
44
}
ilServicesContainerSuite\suite
static suite()
Definition:
ilServicesContainerSuite.php:30
TestSuite
ilServicesContainerSuite
Definition:
ilServicesContainerSuite.php:28
Services
Container
test
ilServicesContainerSuite.php
Generated on Wed Sep 10 2025 14:11:24 for ILIAS by
1.8.13 (using
Doxyfile
)