15 $c1 = $this->newConfig();
16 $c2 = $this->newConfig();
17 $c3 = $this->newConfig();
21 $this->assertInstanceOf(Setup\Config::class,
$c);
26 $c1 = $this->newConfig();
27 $c2 = $this->newConfig();
28 $c3 = $this->newConfig();
32 $this->assertEquals($c1,
$c->getConfig(
"c1"));
33 $this->assertEquals($c2,
$c->getConfig(
"c2"));
34 $this->assertEquals($c3,
$c->getConfig(
"c3"));
39 $c1 = $this->newConfig();
40 $c2 = $this->newConfig();
41 $c3 = $this->newConfig();
45 $this->assertEquals([
"c1",
"c2",
"c3"],
$c->getKeys());
A collection of some configurations.