in src/main/java/org/apache/sling/testing/junit/rules/instance/util/ContextPathAllocator.java [31:41]
public String allocateContextPath() {
while (true) {
String contextPath = generateContextPath();
boolean contextPathAdded = checkAndAdd(contextPath);
if (contextPathAdded) {
return "/" + contextPath;
}
}
}