@BeforeClass
 public static void startTestServer() throws Exception {
   final Injector injector =
       Guice.createInjector(new RestModule(ConfigurationLoader.getConfiguration()));
   server = injector.getInstance(ClueServer.class);
   server.start();
 }
 @AfterClass
 public static void stopTestServer() throws Exception {
   server.stop();
 }