blob: 9c4b9a96f23820a233d32b4203f6fe9f2e43d8ce [file] [log] [blame]
package org.apache.synapse.samples.n2n;
import org.apache.synapse.SynapseConstants;
import samples.userguide.StockQuoteClient;
/**
*
*/
public class SynapseSample_50_Integration extends AbstractAutomationTestCase {
protected void setUp() throws Exception {
System.setProperty(SynapseConstants.SYNAPSE_XML, SAMPLE_CONFIG_ROOT_PATH + "synapse_sample_50.xml");
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);
}
}