use of br.eti.kinoshita.testlinkjavaapi.model.TestCase in project elastest-torm by elastest.
the class TestLinkService method getFullDetailedTestCase.
public TestCase getFullDetailedTestCase(TestCase testCase) {
TestCase auxTestCase = this.api.getTestCaseByExternalId(testCase.getFullExternalId(), testCase.getVersion());
testCase.setSummary(auxTestCase.getSummary());
testCase.setPreconditions(auxTestCase.getPreconditions());
testCase.setOrder(auxTestCase.getOrder());
return testCase;
}
Aggregations