@Test
@JiraBuildNumberDependent(BN_JIRA_5)
public void testGetResolutions() {
final Iterable<Resolution> resolutions = client.getMetadataClient().getResolutions(pm);
assertEquals(5, Iterables.size(resolutions));
final Resolution resolution = findEntityBySelfAddressSuffix(resolutions, "/1");
assertEquals("Fixed", resolution.getName());
assertEquals("A fix for this issue is checked into the tree and tested.", resolution.getDescription());
assertNotNull(resolution.getSelf());
}