use of org.sonar.alm.client.bitbucket.bitbucketcloud.MainBranch in project sonarqube by SonarSource.
the class ImportBitbucketCloudRepoActionTest method getGsonBBCRepo.
private Repository getGsonBBCRepo() {
Project project1 = new Project("PROJECT-UUID-ONE", "projectKey1", "projectName1");
MainBranch mainBranch = new MainBranch("branch", "develop");
return new Repository("REPO-UUID-ONE", "repo-slug-1", "repoName1", project1, mainBranch);
}
Aggregations