MediaWiki REL1_31
MultiConfigTest.php
Go to the documentation of this file.
1<?php
2
4
11 public function testGet() {
12 $multi = new MultiConfig( [
13 new HashConfig( [ 'foo' => 'bar' ] ),
14 new HashConfig( [ 'foo' => 'baz', 'bar' => 'foo' ] ),
15 new HashConfig( [ 'bar' => 'baz' ] ),
16 ] );
17
18 $this->assertEquals( 'bar', $multi->get( 'foo' ) );
19 $this->assertEquals( 'foo', $multi->get( 'bar' ) );
20 $this->setExpectedException( ConfigException::class, 'MultiConfig::get: undefined option:' );
21 $multi->get( 'notset' );
22 }
23
27 public function testHas() {
28 $conf = new MultiConfig( [
29 new HashConfig( [ 'foo' => 'foo' ] ),
30 new HashConfig( [ 'something' => 'bleh' ] ),
31 new HashConfig( [ 'meh' => 'eh' ] ),
32 ] );
33
34 $this->assertTrue( $conf->has( 'foo' ) );
35 $this->assertTrue( $conf->has( 'something' ) );
36 $this->assertTrue( $conf->has( 'meh' ) );
37 $this->assertFalse( $conf->has( 'what' ) );
38 }
39}
A Config instance which stores all settings as a member variable.
testHas()
MultiConfig::has.
testGet()
Tests that settings are fetched in the right order.
Provides a fallback sequence for Config objects.