public function testLoad()
 {
     $json = Fixtures::getSampleJsonString();
     $this->assertEquals(json_decode($json, true), $this->loader->load($json));
 }
Exemplo n.º 2
0
 /**
  * Load config options into the options array using the injected loader
  */
 public function load()
 {
     $this->options = $this->loader->load($this->input);
 }