public ServletBridgeProbeInvoker(String encodedInstruction) {
try {
// parse class and method out of expression:
String[] parts = encodedInstruction.split(";");
if (parts.length != 3) {
throw new TestContainerException("invalid test instruction: " + encodedInstruction);
}
clazz = parts[0];
method = parts[1];
URI contextRoot = new URI(parts[2]);
this.testRunner = getTestRunner(contextRoot);
}
catch (URISyntaxException exc) {
throw new TestContainerException(exc);
}
}