public function testGetChoicesForValues()
 {
     $this->query->expects($this->once())->method('filterById')->with(array(1, 2))->will($this->returnSelf());
     ItemQuery::$result = array($this->item2, $this->item1);
     parent::testGetChoicesForValues();
 }