Я пытаюсь проанализировать список тестов из следующего фрагмента кода, и мне не удается получить правильный синтаксис.Может кто-нибудь, пожалуйста, помогите мне с правильным способом разобрать тесты.Спасибо за любую помощь, спасибо.Обещание, которое я использую, взято из следующего пакета
'пакет com.atlassian.util.concurrent;'
Promise<Iterable<TestExecution.Test>> tests = this.getTests(testExecutionKey);
Вот мой метод getTests.getAndParse () происходит из класса AbstractAsynchronousRestClient в следующем пакете
пакет com.atlassian.jira.rest.client.internal.async;
public Promise<Iterable<TestExecution.Test>> getTests(TestExecution testExecution) {
UriBuilder uriBuilder=UriBuilder.fromUri(baseUri);
uriBuilder.path("testexec").path("{isssue-key}").path("test");
return this.getAndParse(uriBuilder.build(testExecution.getKey()),this.testsParser);
}
Вот ссылка на GitHubпроект, который я пытаюсь изменить в соответствии с моими потребностями.https://github.com/wapophis/XrayJiraRestClient/blob/master/src/main/java/es/cuatrogatos/jira/xray/rest/client/core/internal/async/AsyncTestExecRestClient.java