/** @dataProvider inputDataProvider */
 public function testInput($input, $expected)
 {
     $actual = $this->args->decode($input);
     foreach($expected as $key => $value) {
         $this->assertEquals($value, $actual[$key]);
     }
 }