use of com.checkmarx.sdk.dto.cx.xml.CxXMLResultsType in project checkmarx-spring-boot-java-sdk by checkmarx-ltd.
the class CxServiceIT method getXmlReportContent.
@Test
public void getXmlReportContent() {
try {
CxXMLResultsType results = service.getLatestScanReport(properties.getTeam(), "Riches");
assertNotNull(results);
} catch (CheckmarxException e) {
fail("Unexpected CheckmarxException");
}
}
Aggregations