예제 #1
0
 /**
  * Test the fetching of a single value does not exist in the config
  */
 public function testGetConfigSingleInvalid()
 {
     $config = ['test' => true];
     $context = new TestContext($config);
     $this->assertEquals(null, $context->getConfig('foobar'));
 }