private final boolean isReserved;
private final URL host;
private final Map<String, String> capabilities;
public SeleniumTestSlot(TestSlot testSlot) {
RemoteProxy proxy = testSlot.getProxy();
host = proxy.getRemoteHost();
capabilities = toCapabilities(testSlot);
isReserved = testSlot.getSession() != null;
}