ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CategoryReferenceTest Class Reference

Test clipboard repository. More...

+ Inheritance diagram for CategoryReferenceTest:
+ Collaboration diagram for CategoryReferenceTest:

Public Member Functions

 testCommands ()
 Test commands. More...
 

Protected Member Functions

 setUp ()
 
 setGlobalVariable (string $name, $value)
 
 tearDown ()
 

Detailed Description

Test clipboard repository.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 28 of file CategoryReferenceTest.php.

Member Function Documentation

◆ setGlobalVariable()

CategoryReferenceTest::setGlobalVariable ( string  $name,
  $value 
)
protected
Parameters
string$name
mixed$value

Definition at line 52 of file CategoryReferenceTest.php.

References $c, $DIC, and $GLOBALS.

Referenced by setUp().

52  : void
53  {
54  global $DIC;
55 
56  $GLOBALS[$name] = $value;
57 
58  unset($DIC[$name]);
59  $DIC[$name] = static function (\ILIAS\DI\Container $c) use ($value) {
60  return $value;
61  };
62  }
$c
Definition: deliver.php:25
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
$GLOBALS["DIC"]
Definition: wac.php:53
global $DIC
Definition: shib_login.php:22
+ Here is the caller graph for this function:

◆ setUp()

CategoryReferenceTest::setUp ( )
protected

Definition at line 30 of file CategoryReferenceTest.php.

References $dic, $GLOBALS, and setGlobalVariable().

30  : void
31  {
32  $dic = new ILIAS\DI\Container();
33  $GLOBALS['DIC'] = $dic;
34 
35  parent::setUp();
36 
37  $this->setGlobalVariable(
38  "ilAccess",
39  $this->createConfiguredMock(
40  ilAccess::class,
41  [
42  "checkAccess" => true
43  ]
44  )
45  );
46  }
setGlobalVariable(string $name, $value)
$GLOBALS["DIC"]
Definition: wac.php:53
$dic
Definition: result.php:31
+ Here is the call graph for this function:

◆ tearDown()

CategoryReferenceTest::tearDown ( )
protected

Definition at line 64 of file CategoryReferenceTest.php.

64  : void
65  {
66  }

◆ testCommands()

CategoryReferenceTest::testCommands ( )

Test commands.

Definition at line 71 of file CategoryReferenceTest.php.

References ilObjectAccess\_getCommands().

71  : void
72  {
74  $this->assertIsArray($commands);
75  }
static _getCommands()
get commands
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: