15 protected function setUp() : void
17 include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php");
18 ilUnitUtil::performInitialisation();
24 public function test_DIC($global_name, $class_name)
28 $this->assertInstanceOf($class_name,
$GLOBALS[$global_name]);
29 $this->assertInstanceOf($class_name, $DIC[$global_name]);
30 $this->assertSame(
$GLOBALS[$global_name], $DIC[$global_name]);
41 $this->assertInstanceOf($class_name,
$service);
47 return array( array(
"ilIliasIniFile",
"ilIniFile")
48 , array(
"ilCtrl",
"ilCtrl")
49 , array(
"tree",
"ilTree")
50 , array(
"ilLog",
"ilLogger")
51 , array(
"ilDB",
"ilDBInterface")
57 return array( array(
"ilDBInterface",
function (
$DIC) {
58 return $DIC->database();
60 , array(
"ilCtrl",
function (
$DIC) {
63 , array(
"ilObjUser",
function (
$DIC) {
66 , array(
"ilRbacSystem",
function (
$DIC) {
67 return $DIC->rbac()->system();
69 , array(
"ilRbacAdmin",
function (
$DIC) {
70 return $DIC->rbac()->admin();
72 , array(
"ilRbacReview",
function (
$DIC) {
73 return $DIC->rbac()->review();
75 , array(
"ilAccess",
function (
$DIC) {
76 return $DIC->access();
78 , array(
"ilTree",
function (
$DIC) {
79 return $DIC->repositoryTree();
81 , array(
"ilLanguage",
function (
$DIC) {
82 return $DIC->language();
90 , array(
"ilLogger",
function (
$DIC) {
91 return $DIC->logger()->root();
93 , array(
"ilLogger",
function (
$DIC) {
94 return $DIC->logger()->grp();
96 , array(
"ilLogger",
function (
$DIC) {
97 return $DIC->logger()->crs();
99 , array(
"ilLogger",
function (
$DIC) {
100 return $DIC->logger()->tree();
TestCase for the ilContext needsInstalledILIAS.
test_DIC_getters($class_name, $getter)
getterProvider
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
test_DIC($global_name, $class_name)
globalsProvider