Example #1
0
 public function testSetConfigInput()
 {
     $expected = __DIR__ . '/mocks/config.json';
     $mw = new Config($expected);
     $next = function ($req, $res) {
         return $res;
     };
     $response = $mw($this->request, $this->response, $next);
     $configInput = $mw->getConfigInput();
     $this->assertEquals($configInput, $expected);
 }