public function itGetsNewValueIdForAUgroupList()
 {
     $new_value_id = $this->xml_fields_mapping->getNewValueId(200);
     $this->assertEqual(200, $new_value_id);
 }
 public function itThrowsAnExceptionIfTheNewValueIsNotFound()
 {
     $this->expectException('TrackerXmlFieldsMapping_ValueNotFoundException');
     $this->xml_fields_mapping->getNewValueId('b12345');
 }