final Issue issue = issueClient.getIssue(issueKey).claim();
assertEquals(issueKey, issue.getKey());
// delete issue should thrown 401
expectedException.expect(rceWithSingleError(401, "You do not have permission to delete issues in this project."));
issueClient.deleteIssue(issueKey, false).claim();
}
@Test
public void testTransitionWithNumericCustomFieldAndInteger() throws Exception {
final Issue issue = client.getIssueClient().getIssue("TST-1").claim();