ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilExportOptionsTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
7 
12 class ilExportOptionsTest extends TestCase
13 {
14  protected $backupGlobals = false;
15 
16  protected Container $dic;
17 
18  protected function setUp(): void
19  {
20  $this->initDependencies();
21  parent::setUp();
22  }
23 
24  public function testConstruct(): void
25  {
26  $options = ilExportOptions::getInstance();
27  $this->assertNull($options);
28 
29  $options = ilExportOptions::newInstance(0);
30  $this->assertTrue($options instanceof ilExportOptions);
31 
32  $options_ref = ilExportOptions::getInstance();
33  $this->assertEquals($options, $options_ref);
34  }
35 
36 
37  protected function setGlobalVariable(string $name, $value): void
38  {
39  global $DIC;
40 
41  $GLOBALS[$name] = $value;
42  unset($DIC[$name]);
43  $DIC[$name] = static function (\ILIAS\DI\Container $c) use ($value) {
44  return $value;
45  };
46  }
47 
48  protected function initDependencies(): void
49  {
50  $this->dic = new Container();
51  $GLOBALS['DIC'] = $this->dic;
52 
53  $this->setGlobalVariable('ilDB', $this->createMock(ilDBInterface::class));
54  }
55 }
$c
Definition: cli.php:38
static newInstance(int $a_export_id)
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: feed.php:28
if($format !==null) $name
Definition: metadata.php:247
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
Class ilExportOptionsTest.
setGlobalVariable(string $name, $value)