public function itThrowsAnExceptionWhenReturningValueIndexedByFieldName() { $field = new Tracker_FormElement_Field_ArtifactLink(1, 101, null, 'field_artlink', 'Field ArtLink', '', 1, 'P', true, '', 1); $this->expectException('Tracker_FormElement_RESTValueByField_NotImplementedException'); $value = 'some_value'; $field->getFieldDataFromRESTValueByField($value); }