public function testSetDuration()
 {
     $a = new IndexingTaskStatusQueryResponse();
     $a->setDuration(600);
     $this->assertEquals(600, $a->getDuration());
     $a->setDuration(30);
     $this->assertEquals(30, $a->getDuration());
 }