Package test.web

Source Code of test.web.game_test

package test.web;

import java.io.IOException;
import java.net.MalformedURLException;

import javax.xml.parsers.ParserConfigurationException;

import org.junit.BeforeClass;
import org.xml.sax.SAXException;

import scotlandyard.servlets.beans.WebUserBean;

import com.meterware.httpunit.WebConversation;

public class game_test extends WebUnitTest {
  private final static String HOST = "http://localhost:8084/sy";
 
  public game_test() throws ParserConfigurationException, MalformedURLException, IOException, SAXException {
    super(new WebConversation(),HOST);
   
  }

  @BeforeClass
  public static void beforeClass() throws Exception{
    new WebUserBean();
  }
}
TOP

Related Classes of test.web.game_test

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.