FileDocCategorySizeDatePackage
TestPrice_Service.javaAPI DocExample474Tue Oct 09 11:03:40 BST 2001com.ecerami.test.soap

TestPrice_Service.java

package com.ecerami.test.soap;

import junit.framework.*;
import com.ecerami.soap.*;

public class TestPrice_Service extends TestCase {

     public TestPrice_Service (String name) {
         super(name);
     }

    /**
     * Tests Price Service
     */
    public void testPriceService () throws Exception {
      PriceClient client = new PriceClient();
      double price = client.getPrice("A358565");
      assertEquals (19.99, price, 0.0);
    }

}