Package com.google.sitebricks.acceptance

Source Code of com.google.sitebricks.acceptance.Server

package com.google.sitebricks.acceptance;

import com.google.sitebricks.acceptance.util.JettyAcceptanceTest;

/**
* @author dhanji@gmail.com (Dhanji R. Prasanna)
*/
public class Server {
  public static void main(String[] args) throws Exception {
    JettyAcceptanceTest acceptanceTest = new JettyAcceptanceTest(8080);
    acceptanceTest.start();
    acceptanceTest.join();
  }
}
TOP

Related Classes of com.google.sitebricks.acceptance.Server

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.