19 declare(strict_types=1);
28 protected function setUp(): void
32 if (!defined(
"ROOT_FOLDER_ID")) {
33 define(
"ROOT_FOLDER_ID", 8);
35 if (!defined(
"ILIAS_LOG_ENABLED")) {
36 define(
"ILIAS_LOG_ENABLED",
false);
38 if (!defined(
"ILIAS_LOG_DIR")) {
39 define(
"ILIAS_LOG_DIR",
'/var/log');
41 if (!defined(
"ILIAS_LOG_FILE")) {
42 define(
"ILIAS_LOG_FILE",
'/var/log/ilias.log');
49 $this->assertTrue($tree instanceof
ilTree);
56 $tree->initLangCode();
57 $tree_reflection =
new ReflectionProperty($tree,
'lang_code');
58 $tree_reflection->setAccessible(
true);
59 $this->assertEquals(
'en', $tree_reflection->getValue($tree));
64 $user = $this->getMockBuilder(ilObjUser::class)
65 ->disableOriginalConstructor()
66 ->onlyMethods([
'getCurrentLanguage'])
68 $user->method(
'getCurrentLanguage')->willReturn(
'');
70 $tree->initLangCode();
71 $tree_reflection =
new ReflectionProperty($tree,
'lang_code');
72 $tree_reflection->setAccessible(
true);
73 $this->assertEquals(
'en', $tree_reflection->getValue($tree));
97 $this->
setGlobalVariable(
'ilAppEventHandler', $this->createMock(ilAppEventHandler::class));
99 $logger = $this->getMockBuilder(ilLogger::class)
100 ->disableOriginalConstructor()
103 $logger_factory = $this->getMockBuilder(ilLoggerFactory::class)
104 ->disableOriginalConstructor()
105 ->onlyMethods([
'getComponentLogger'])
107 $logger_factory->method(
'getComponentLogger')->willReturn($logger);
Customizing of pimple-DIC for ILIAS.
setGlobalVariable(string $name, $value)
initRepositoryTreeDependencies()