use of com.checkmarx.flow.dto.Sources in project cx-flow by checkmarx-ltd.
the class GitHubServiceTest method getRepoContent.
@IfProfileValue(name = "testprofile", value = "integration")
@Test
public void getRepoContent() {
ScanRequest request = ScanRequest.builder().namespace("Custodela").repoName("Riches").branch("master").build();
Sources sources = service.getRepoContent(request);
assertNotNull(sources);
}
Aggregations