super(name);
}
public void doTestStockJWS () throws Exception {
String[] args = { "-uuser1", "-wpass1", "XXX", "-sjws/StockQuoteService.jws" };
float val = new GetQuote().getQuote(args);
assertEquals("TestStockSample.doTestStockJWS(): stock price should be 66.25", val, 66.25, 0.01);
// This should FAIL
args[3] = "-sjws/AltStockQuoteService.jws";
try {
val = new GetQuote().getQuote(args);
} catch (AxisFault e) {
// Don't print stack trace unless there is an error
// e.printStackTrace();
return;
}