private final Config config;
public TestServer() throws IOException, ProtocolException {
nameToCommand = new HashMap<String, TestServerCommand>();
addCommand(new RunMauveTestCommand());
addCommand(new ShutdownCommand(this));
addCommand(new GetStatusCommand());
config = Config.read();
Server<?, ?> s = null;