/**
  * @test
  */
 public function canGetArguments()
 {
     $this->addToUrlQueueCommand->addDocumentId(100);
     $this->addToUrlQueueCommand->addDocumentId(101);
     $this->assertEquals(array('documentIds' => array(100, 101)), $this->addToUrlQueueCommand->getArguments());
 }