Skip to content

Commit

Permalink
Add new evaluation type - SUSPECTED_TYPE
Browse files Browse the repository at this point in the history
  • Loading branch information
muttcg committed Sep 9, 2024
1 parent a511615 commit 368e74d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ public enum EvaluationType {
IDENTIFIED_DATE_INVALID(EvaluationCategory.OCC_INTERPRETATION_BASED),
BASIS_OF_RECORD_INVALID(EvaluationCategory.OCC_INTERPRETATION_BASED),
TYPE_STATUS_INVALID(EvaluationCategory.OCC_INTERPRETATION_BASED),
SUSPECTED_TYPE(EvaluationCategory.OCC_INTERPRETATION_BASED),
MULTIMEDIA_DATE_INVALID(EvaluationCategory.OCC_INTERPRETATION_BASED),
MULTIMEDIA_URI_INVALID(EvaluationCategory.OCC_INTERPRETATION_BASED),
REFERENCES_URI_INVALID(EvaluationCategory.OCC_INTERPRETATION_BASED),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class EvaluationTypeTest {
@Test
public void addNewEvaluationTypeTest() {
// When we add new OccurrenceIssue this will fail, then we need add new value to EvaluationType
assertEquals(95, OccurrenceIssue.values().length);
assertEquals(151, EvaluationType.values().length);
assertEquals(96, OccurrenceIssue.values().length);
assertEquals(152, EvaluationType.values().length);
}
}

0 comments on commit 368e74d

Please sign in to comment.