Example #1
0
 public function testUnshiftArgument()
 {
     $configs = new Components_Configs();
     $configs->unshiftArgument('test');
     $arguments = $configs->getArguments();
     $this->assertEquals('test', $arguments[0]);
 }