01: package org.apache.synapse.samples.n2n;
02:
03: import org.apache.synapse.SynapseConstants;
04:
05: /**
06: *
07: */
08: public class SynapseSample_110_Integration extends
09: AbstractAutomationTestCase {
10:
11: protected void setUp() throws Exception {
12: System.setProperty(SynapseConstants.SYNAPSE_XML,
13: SAMPLE_CONFIG_ROOT_PATH + "synapse_sample_110.xml");
14: // System.setProperty("addurl", SYNAPSE_BASE_URL + "soap/StockQuoteProxy");
15: // System.setProperty("symbol", "IBM");
16: // todo : setup the JMS
17: super .setUp();
18: }
19:
20: public void testSample() throws Exception {
21: // String resultString = getStringResultOfTest(StockQuoteClient.executeTestClient());
22: // assertXpathExists("ns:getQuoteResponse", resultString);
23: // assertXpathExists("ns:getQuoteResponse/ns:return", resultString);
24: }
25: }
|