Package example.web

Source Code of example.web.HelloWorldServletTest

package example.web;

import org.apache.cactus.ServletTestCase;
import org.apache.cactus.WebResponse;

import example.web.HelloWorldServlet;

/**
* This tests that the HelloWorld servlet is functioning
*
* @author <a href="trajano@yahoo.com">Archimedes Trajano</a>
* @version $Id: HelloWorldServletTest.java 366021 2006-01-04 23:14:07Z ltheussl $
*/
public class HelloWorldServletTest extends ServletTestCase {

    public void testHelloWorld() throws Exception {
        HelloWorldServlet servlet = new HelloWorldServlet();       
        servlet.doGet(request,response);
    }
   
    public void endHelloWorld(WebResponse response) {
        assertTrue(response.getText().startsWith("Hello world on"));
    }
}
TOP

Related Classes of example.web.HelloWorldServletTest

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.