blob: 245d83e3a19be68d04262c3ab841ec98895787c0 [file] [log] [blame]
package org.apache.synapse.samples.n2n;
import org.apache.synapse.SynapseConstants;
import samples.userguide.StockQuoteClient;
/**
*
*/
public class SynapseSample_55_Integration extends AbstractAutomationTestCase {
protected void setUp() throws Exception {
System.setProperty(SynapseConstants.SYNAPSE_XML, SAMPLE_CONFIG_ROOT_PATH + "synapse_sample_54.xml");
System.setProperty("addurl", SYNAPSE_BASE_URL);
System.setProperty("symbol", "IBM");
System.setProperty("mode", "quote");
super.setUp();
}
public void testSample() throws Exception {
String resultString = getStringResultOfTest(StockQuoteClient.executeTestClient());
assertXpathExists("ns:getQuoteResponse", resultString);
assertXpathExists("ns:getQuoteResponse/ns:return", resultString);
}
}