1
2
3
4
5
6
7
8
9
10
11 package org.mule.example.loanbroker.esn;
12
13 import org.mule.example.loanbroker.tests.AbstractAsynchronousLoanBrokerTestCase;
14
15 public class CxfLoanBrokerAsynchronousFunctionalTestCase extends AbstractAsynchronousLoanBrokerTestCase
16 {
17
18 @Override
19 public void testLotsOfLoanRequests() throws Exception
20 {
21 super.testLotsOfLoanRequests();
22 }
23
24 @Override
25 protected String getConfigResources()
26 {
27 return "loan-broker-async-config.xml, loan-broker-cxf-endpoints-config.xml";
28 }
29
30 @Override
31 protected int getNumberOfRequests()
32 {
33 return 10;
34 }
35
36 @Override
37 protected int getWarmUpMessages()
38 {
39
40 return 1;
41 }
42
43 }