public function argumentsWithSwitch()
 {
     $options = new RuntimeOptions();
     $options->withSwitch('q');
     $this->assertArguments(['-q'], $options);
 }
 public function argumentsWithSwitch()
 {
     $options = new RuntimeOptions();
     $options->withSwitch('q');
     $this->assertEquals(array('-q'), $options->asArguments());
 }