/**
  * Sets up an Ambry frontend server.
  *
  * @throws Exception
  */
 @BeforeClass
 public static void setup() throws Exception {
   ambryRestServer =
       new RestServer(FRONTEND_VERIFIABLE_PROPS, CLUSTER_MAP, new LoggingNotificationSystem());
   ambryRestServer.start();
   nettyClient = new NettyClient("localhost", SERVER_PORT);
 }