16 $c1 = $this->newConfig();
17 $c2 = $this->newConfig();
18 $c3 = $this->newConfig();
22 $this->assertInstanceOf(Setup\Config::class,
$c);
27 $c1 = $this->newConfig();
28 $c2 = $this->newConfig();
29 $c3 = $this->newConfig();
33 $this->assertEquals($c1,
$c->getConfig(
"c1"));
34 $this->assertEquals($c2,
$c->getConfig(
"c2"));
35 $this->assertEquals($c3,
$c->getConfig(
"c3"));
40 $c1 = $this->newConfig();
41 $c2 = $this->newConfig();
42 $c3 = $this->newConfig();
46 $this->assertEquals([
"c1",
"c2",
"c3"],
$c->getKeys());
51 $c1 = $this->newConfig();
52 $c2 = $this->newConfig();
53 $c3 = $this->newConfig();
57 $this->assertEquals($c1,
$c->maybeGetConfig(
"c1"));
58 $this->assertEquals($c2,
$c->maybeGetConfig(
"c2"));
59 $this->assertEquals(null,
$c->maybeGetConfig(
"c3"));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
A collection of some configurations.