blob: 24aaa5b2a342ece77ba7897df4c53c7a83c7a918 [file] [log] [blame]
package org.apache.synapse.samples.n2n;
import org.apache.synapse.SynapseConstants;
import samples.userguide.StockQuoteClient;
/**
*
*/
public class SynapseSample_11_Integration extends AbstractAutomationTestCase {
protected void setUp() throws Exception {
System.setProperty(SynapseConstants.SYNAPSE_XML, SAMPLE_CONFIG_ROOT_PATH + "synapse_sample_11.xml");
System.setProperty("addurl", "http://localhost:9000/services/SimpleStockQuoteService");
System.setProperty("trpurl", SYNAPSE_BASE_URL);
super.setUp();
}
public void testSample() throws Exception {
String resultString = getStringResultOfTest(StockQuoteClient.executeTestClient());
assertXpathExists("ns:getQuoteResponse", resultString);
assertXpathExists("ns:getQuoteResponse/ns:return", resultString);
}
}