⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 city_bbbtestcase.java

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 JAVA
字号:
/** * CityBBBTestCase.java * * This file was auto-generated from WSDL * by the Apache Axis Wsdl2java emitter. */package test.wsdl.wrapped;public class City_BBBTestCase extends junit.framework.TestCase {    public City_BBBTestCase(String name) {        super(name);    }    public void testCity_BBBPortWSDL() throws Exception {        javax.xml.rpc.ServiceFactory serviceFactory = javax.xml.rpc.ServiceFactory.newInstance();        java.net.URL url = new java.net.URL(new test.wsdl.wrapped.City_BBBLocator().getCity_BBBPortAddress() + "?WSDL");        javax.xml.rpc.Service service = serviceFactory.createService(url, new test.wsdl.wrapped.City_BBBLocator().getServiceName());        assertTrue(service != null);    }    public void test1CityBBBPortGetAttraction() throws Exception {        City_BBBPortType binding;        binding = new City_BBBLocator().getCity_BBBPort();        assertTrue("binding is null", binding != null);                Attraction value = binding.getAttraction("Christmas");        assertEquals("OID value was wrong", value.get_OID(),                     City_BBBBindingImpl.OID_STRING);    }        public void test2CityBBBPortGetAttractions() throws Exception {        City_BBBPortType binding;        try {            binding = new City_BBBLocator().getCity_BBBPort();        }        catch (javax.xml.rpc.ServiceException jre) {            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);        }        assertTrue("binding is null", binding != null);        // Invoke getAttractions with two inputs        String[] attName = new String[] {"Christmas", "Xmas"};        Attraction[] value = binding.getAttractions(attName);        assertEquals("OID value was wrong for first attraction", value[0].get_OID(),                     City_BBBBindingImpl.OID_STRING);        assertEquals("OID value was wrong for second attaction", value[1].get_OID(),                     City_BBBBindingImpl.OID_STRING);    }    public void test3CityBBBPortGetAttractions() throws Exception {        City_BBBPortType binding;        try {            binding = new City_BBBLocator().getCity_BBBPort();        }        catch (javax.xml.rpc.ServiceException jre) {            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);        }        assertTrue("binding is null", binding != null);        // Invoke getAttractions with one input        String[] attName = new String[] {"Christmas"};        Attraction[] value = binding.getAttractions(attName);        assertEquals("OID value was wrong for first attraction", value[0].get_OID(),                     City_BBBBindingImpl.OID_STRING);    }    public void test4CityBBBPortGetAttractions() throws Exception {        City_BBBPortType binding;        try {            binding = new City_BBBLocator().getCity_BBBPort();        }        catch (javax.xml.rpc.ServiceException jre) {            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);        }        assertTrue("binding is null", binding != null);        // Invoke getAttractions with one input        String[] attName = new String[] {"Christmas", null};        Attraction[] value = binding.getAttractions(attName);        assertEquals("Expected returned Attraction length of 2", value.length, 2);        assertEquals("OID value was wrong for first attraction", value[0].get_OID(),                     City_BBBBindingImpl.OID_STRING);        assertEquals("Attracton[1] should be null", value[1], null);    }    public void test5CityBBBPortGetAttractions() throws Exception {        City_BBBPortType binding;        try {            binding = new City_BBBLocator().getCity_BBBPort();        }        catch (javax.xml.rpc.ServiceException jre) {            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);        }        assertTrue("binding is null", binding != null);        // Invoke getAttractions with one input        String[] attName = new String[] {"Christmas", ""};        Attraction[] value = binding.getAttractions(attName);        assertEquals("Expected returned Attraction length of 2", value.length, 2);        assertEquals("OID value was wrong for first attraction", value[0].get_OID(),                     City_BBBBindingImpl.OID_STRING);        assertEquals("Attracton[1] should be null", value[1], null);    }    public void test6CityBBBPortGetAttractions() throws Exception {        City_BBBPortType binding;        try {            binding = new City_BBBLocator().getCity_BBBPort();        }        catch (javax.xml.rpc.ServiceException jre) {            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);        }        assertTrue("binding is null", binding != null);        // Invoke getAttractions2 with two inputs        Query[] query = new Query[2];        query[0] = new Query();        query[0].setValue("Christmas");        query[1] = new Query();        query[1].setValue("Xmas");        Attraction[] value = binding.getAttractions2(query);        assertEquals("OID value was wrong for first attraction", value[0].get_OID(),                     City_BBBBindingImpl.OID_STRING);        assertEquals("OID value was wrong for second attaction", value[1].get_OID(),                     City_BBBBindingImpl.OID_STRING);    }    public void test7CityBBBPortGetAttractions() throws Exception {        City_BBBPortType binding;        try {            binding = new City_BBBLocator().getCity_BBBPort();        }        catch (javax.xml.rpc.ServiceException jre) {            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);        }        assertTrue("binding is null", binding != null);        // Invoke getAttractions2 with one input        Query[] query = new Query[1];        query[0] = new Query();        query[0].setValue("Christmas");                Attraction[] value = binding.getAttractions2(query);        assertEquals("OID value was wrong for first attraction", value[0].get_OID(),                     City_BBBBindingImpl.OID_STRING);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -