RequestTest.java :  » Web-Server » tornado » tornado » test » Java Open Source

Java Open Source » Web Server » tornado 
tornado » tornado » test » RequestTest.java
// $Id: RequestTest.java,v 1.1 2001/01/23 14:38:16 nconway Exp $
package tornado.test;
import tornado.*;
import java.net.Socket;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;

public class RequestTest extends TestCase {
    private Socket socket;
    private Request request;

    public RequestTest(String name) {
        super(name);
    }

    protected void setUp() {
        ;
    }

    protected void tearDown() {
        if (request != null) request = null;
        socket = null;
    }

    public static Test suite() {
        return new TestSuite(RequestTest.class);
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.