public function testGetValuesForChoices()
 {
     $this->adaptedList->expects($this->once())->method('getValuesForChoices')->with(array(1 => 'a', 4 => 'b', 7 => 'c'))->willReturn(array(1 => ':a', 4 => ':b', 7 => ':c'));
     $this->assertSame(array(1 => ':a', 4 => ':b', 7 => ':c'), $this->list->getValuesForChoices(array(1 => 'a', 4 => 'b', 7 => 'c')));
 }