in tcbot-engine/src/main/java/org/apache/ignite/tcbot/engine/issue/IssueType.java [50:69]
static public IssueType convertDisplayName(String displayName) {
switch (displayName) {
case "New test failure":
return newFailure;
case "Recently contributed test failed":
return newContributedTestFailure;
case "New stable failure of a flaky test":
return newFailureForFlakyTest;
case "New Critical Failure":
return newCriticalFailure;
case "New Trusted Suite failure":
return newTrustedSuiteFailure;
case "Test with high flaky rate":
return newTestWithHighFlakyRate;
case "Always failed test":
return newAlwaysFailure;
}
throw new IllegalArgumentException("Illegal issue type: " + displayName);
}