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