FileDocCategorySizeDatePackage
TestPriceList_Service.javaAPI DocExample649Tue Oct 09 11:03:40 BST 2001com.ecerami.test.wsdl

TestPriceList_Service

public class TestPriceList_Service extends TestCase

Fields Summary
Constructors Summary
public TestPriceList_Service(String name)

         super(name);
     
Methods Summary
public voidtestProductRetrieval()
Tests Product Retrieval Via GLUE Interface

      Invoke_PriceList invoker = new Invoke_PriceList();
      String skus[] = {"A358185", "A358565" };
      double[] prices = invoker.getPrices (skus);
      assertEquals (54.99, prices[0], 0.0);
      assertEquals (19.99, prices[1], 0.0);