1 Reply Latest reply on Aug 11, 2014 5:58 PM by chubutin

    Junit for camel route

    joby.kj

      Hi All,

                   I have a camel route with proxy web service url and real web service url and custom simple bean processor for validation also .

       

         <route >

                 <from uri="cxf:http://localhost:9080/employeeProxy?serviceClass=com.sample.service.EmployeeService"/>  

            

                <bean ref="SimpleProcessor" />

                                   

                <to uri="cxf:http://localhost:8080/MyTest/services/employeeService?serviceClass=com.sample.service.EmployeeService"/> 

              

               </route>

      How can I create a junit test class and  methods for this route ?

       

      Joby