final Map<String, CimFieldInfo> fieldsInfo = parser.parse(
getJsonObjectFromResource("/json/createmeta/fieldsinfo/valid-with-all-issue-types.json")
);
assertThat(fieldsInfo.get("resolution").getAllowedValues(), IsIterableContainingInAnyOrder.<Object>containsInAnyOrder(
new BasicResolution(URI.create("http://localhost:2990/jira/rest/api/latest/resolution/1"), "Fixed"),
new BasicResolution(URI.create("http://localhost:2990/jira/rest/api/latest/resolution/2"), "Won't Fix"),
new BasicResolution(URI.create("http://localhost:2990/jira/rest/api/latest/resolution/3"), "Duplicate"),
new BasicResolution(URI.create("http://localhost:2990/jira/rest/api/latest/resolution/4"), "Incomplete"),
new BasicResolution(URI.create("http://localhost:2990/jira/rest/api/latest/resolution/5"), "Cannot Reproduce")
));
}