public function testKeys()
 {
     $fieldDescription1 = $this->getFieldDescriptionMock('fooName1', 'fooLabel1');
     $fieldDescription2 = $this->getFieldDescriptionMock('fooName2', 'fooLabel2');
     $this->showMapper->add($fieldDescription1);
     $this->showMapper->add($fieldDescription2);
     $this->assertSame(array('fooName1', 'fooName2'), $this->showMapper->keys());
 }