package test; import java.net.URL; import junit.framework.TestCase; public class TestTest extends TestCase { public void test() throws Exception { Object content = new URL("http://localhost:8090/taglibs-test/index.jsp") .getContent(); assertNotNull(content); } }