01: /*
02: * Copyright 2001-2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16:
17: /**
18: * WidgetPriceServiceTestCase.java
19: *
20: */package samples.userguide.example6;
21:
22: public class WidgetPriceServiceTestCase extends
23: junit.framework.TestCase {
24: public WidgetPriceServiceTestCase(String name) {
25: super (name);
26: }
27:
28: public void testWidgetPrice() {
29: samples.userguide.example6.WidgetPrice binding;
30: try {
31: binding = new WidgetPriceServiceLocator().getWidgetPrice();
32: } catch (javax.xml.rpc.ServiceException jre) {
33: throw new junit.framework.AssertionFailedError(
34: "JAX-RPC ServiceException caught: " + jre);
35: }
36: ((WidgetPriceSoapBindingStub) binding).setMaintainSession(true);
37: assertTrue("binding is null", binding != null);
38: try {
39: binding.setWidgetPrice("FOO", "$1.00");
40: } catch (java.rmi.RemoteException re) {
41: throw new junit.framework.AssertionFailedError(
42: "Remote Exception caught: " + re);
43: }
44: try {
45: java.lang.String value = null;
46: value = binding.getWidgetPrice("FOO");
47: assertTrue("Wrong Price" + value, value.equals("$1.00"));
48: } catch (java.rmi.RemoteException re) {
49: throw new junit.framework.AssertionFailedError(
50: "Remote Exception caught: " + re);
51: }
52: }
53: }
|