/*
* 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);
}
}