Add integration tests for anonymous access

This commit is contained in:
Rene Pfeuffer
2019-10-17 11:53:23 +02:00
parent d9cf93b59a
commit 20338c1bb6
6 changed files with 192 additions and 10 deletions

View File

@@ -123,6 +123,12 @@ public final class RepositoryClientFactory
password, workingCopy));
}
public RepositoryClient create(String type, String url, File workingCopy)
throws IOException
{
return new RepositoryClient(getProvider(type).create(url, null, null, workingCopy));
}
//~--- get methods ----------------------------------------------------------
/**