ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilCopyWizardOptionsTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
30 {
31  protected $backupGlobals = false;
32 
33  protected Container $dic;
34 
35  protected function setUp(): void
36  {
38  parent::setUp();
39  }
40 
41  public function testSingleton(): void
42  {
45  $this->assertTrue($first === $second);
46  }
47 
48 
53  protected function setGlobalVariable(string $name, $value): void
54  {
55  global $DIC;
56 
57  $GLOBALS[$name] = $value;
58  unset($DIC[$name]);
59  $DIC[$name] = static function (Container $c) use ($value) {
60  return $value;
61  };
62  }
63 
64  protected function initCopyWizardDependencies(): void
65  {
66  $this->dic = new Container();
67  $GLOBALS['DIC'] = $this->dic;
68 
69  $this->setGlobalVariable('ilDB', $this->createMock(ilDBInterface::class));
70  $this->setGlobalVariable('tree', $this->createMock(ilTree::class));
71  }
72 }
Unit tests for class ilCopyWizardOptions.
$c
Definition: deliver.php:25
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
setGlobalVariable(string $name, $value)
$GLOBALS["DIC"]
Definition: wac.php:53
global $DIC
Definition: shib_login.php:22
static _getInstance(int $a_copy_id)