Uses of Class
org.qubership.atp.ram.clients.api.dto.catalogue.TestCaseDto
Packages that use TestCaseDto
Package
Description
-
Uses of TestCaseDto in org.qubership.atp.ram.clients.api
Methods in org.qubership.atp.ram.clients.api that return types with arguments of type TestCaseDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<TestCaseDto>> TestCaseControllerApi.getAll()GET /catalog/api/v1/testcases : getAllorg.springframework.http.ResponseEntity<List<TestCaseDto>> ProjectControllerApi.getShortCasesByProjectId(UUID uuid) GET /catalog/api/v1/projects/{uuid}/testcases/short : getShortCasesByProjectIdorg.springframework.http.ResponseEntity<List<TestCaseDto>> TestCaseControllerApi.getTestCasesByIds(@Valid CaseSearchRequestDto caseSearchRequestDto) POST /catalog/api/v1/testcases/search/by_ids : getTestCasesByIdsorg.springframework.http.ResponseEntity<List<TestCaseDto>> TestPlanControllerApi.getTestCasesByTestPlanId(UUID uuid) GET /catalog/api/v1/testplans/{uuid}/testcases : getTestCasesByTestPlanIdorg.springframework.http.ResponseEntity<TestCaseDto> TestCaseControllerApi.getTestCaseWithLabelsByUuid(UUID uuid) GET /catalog/api/v1/testcases/{uuid} : getTestCaseWithLabelsByUuidorg.springframework.http.ResponseEntity<TestCaseDto> TestCaseControllerApi.search(@Valid TestCaseSearchRequestDto testCaseSearchRequestDto) POST /catalog/api/v1/testcases/search : search test cases -
Uses of TestCaseDto in org.qubership.atp.ram.clients.api.dto.catalogue
Methods in org.qubership.atp.ram.clients.api.dto.catalogue that return TestCaseDtoModifier and TypeMethodDescriptionTestCaseDto.addComponentsItem(JiraComponentDto componentsItem) TestCaseDto.addDependsOnItem(TestCaseDependencyDto dependsOnItem) TestCaseDto.addFlagsItem(TestCaseFlagsDto flagsItem) TestCaseDto.addLabelIdsItem(UUID labelIdsItem) TestCaseDto.addOrderItem(TestCaseOrderDto orderItem) TestCaseDto.addTestCaseRepeatCountsItem(TestCaseRepeatCountDto testCaseRepeatCountsItem) TestCaseDto.assignee(UserInfoResDto assignee) TestCaseDto.components(List<JiraComponentDto> components) TestCaseDto.createdBy(UserInfoResDto createdBy) TestCaseDto.createdWhen(OffsetDateTime createdWhen) TestCaseDto.datasetStorageUuid(UUID datasetStorageUuid) TestCaseDto.datasetUuid(UUID datasetUuid) TestCaseDto.dependsOn(List<TestCaseDependencyDto> dependsOn) TestCaseDto.description(String description) TestCaseDto.flags(List<TestCaseFlagsDto> flags) TestCaseDto.jiraTicket(String jiraTicket) TestCaseDto.lastRunStatus(String lastRunStatus) TestCaseDto.modifiedBy(UserInfoResDto modifiedBy) TestCaseDto.modifiedWhen(OffsetDateTime modifiedWhen) TestCaseDto.order(List<TestCaseOrderDto> order) TestCaseDto.priority(TestCaseDto.PriorityEnum priority) TestCaseDto.projectUuid(UUID projectUuid) TestCaseDto.status(TestCaseDto.StatusEnum status) TestCaseDto.testCaseRepeatCounts(List<TestCaseRepeatCountDto> testCaseRepeatCounts) TestCaseDto.testPlanUuid(UUID testPlanUuid) TestCaseDto.testScenarioUuid(UUID testScenarioUuid)