Package uptimemart

Source Code of uptimemart.HTTPHandlerTest

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package uptimemart;

import com.sun.net.httpserver.HttpExchange;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;

/**
*
* @author Nick
*/
public class HTTPHandlerTest {
   
    public HTTPHandlerTest() {
    }
   
    @BeforeClass
    public static void setUpClass() {
    }
   
    @AfterClass
    public static void tearDownClass() {
    }
   
    @Before
    public void setUp() {
    }
   
    @After
    public void tearDown() {
    }

    /**
     * Test of handle method, of class HTTPHandler.
     */
    @Test
    public void testHandle() throws Exception {
        System.out.println("handle");
        HttpExchange he = null;
        HTTPHandler instance = new HTTPHandler();
        instance.handle(he);
    }
}
TOP

Related Classes of uptimemart.HTTPHandlerTest

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.