Move tests to test classes

This commit is contained in:
René Pfeuffer
2018-08-22 10:59:46 +02:00
parent 8c128127de
commit b68c8400a7
4 changed files with 54 additions and 66 deletions

View File

@@ -46,8 +46,8 @@ public class RepositoryAccessITCase {
public void shouldFindBranches() throws IOException {
assumeFalse("There are no branches for SVN", repositoryType.equals("svn"));
RepositoryClient repositoryClient = RepositoryUtil.createRepositoryClient(repositoryType, folder );
RepositoryUtil.createAndCommitFile(folder, repositoryClient, "scmadmin", "a.txt", "a");
RepositoryClient repositoryClient = RepositoryUtil.createRepositoryClient(repositoryType, folder);
RepositoryUtil.createAndCommitFile(repositoryClient, "scmadmin", "a.txt", "a");
String branchesUrl = given()
.when()