Beispiel #1
0
 public function testGetNextArgWithMissingArgument()
 {
     $args = array('--foo');
     $box = new Boxer();
     $this->setExpectedException('\\Vube\\VagrantBoxer\\Exception\\MissingArgumentException');
     $foo = $box->getNextArg($args, 0);
 }