Quoting Thilina Gunarathne <[EMAIL PROTECTED]>:

>  Nope...No test cases in Kandula1 either....

There are samples in Kandula 1 and those can be run as junit test cases.

Look under samples/interop

However, no unit tests or "true" test cases thus far:(

thanks,
--dasarath

>  ~Thilina
> 
> ---------- Forwarded message ----------
> From: Hannes Erven <[EMAIL PROTECTED]>
> Date: Nov 5, 2005 4:53 PM
> Subject: Re: WS-BA implementation // Controller separation // Participation
> in Kandula
> To: Thilina Gunarathne <[EMAIL PROTECTED]>
> Cc: Chicken George <[EMAIL PROTECTED]>
> 
> Hi Thilina,
> 
> 
> thanks for fixing & checking in the Axis2 name changes. Attached is the
> patch required for the KandulaDemoServiceStub to compile cleanly.
> 
> We will have a look at the testcases, it sure is a good starting point
> to get an impression of "what is there".
> 
> There aren't test cases for Kandula 1, are there?
> 
> 
> Best regards,
> 
> -hannes
> 
> 
> Index:
> 
C:/he/anderes_svn/kandula.apache.org/java/test/org/apache/kandula/integration/K
andulaDemoServiceStub.java
> ===================================================================
> ---
> 
C:/he/anderes_svn/kandula.apache.org/java/test/org/apache/kandula/integration/K
andulaDemoServiceStub.java
> (revision 330987)
> +++
> 
C:/he/anderes_svn/kandula.apache.org/java/test/org/apache/kandula/integration/K
andulaDemoServiceStub.java
> (working copy)
> @@ -24,10 +24,11 @@
> import org.apache.axis2.addressing.AnyContentType;
> import org.apache.axis2.addressing.EndpointReference;
> import org.apache.axis2.clientapi.MessageSender;
> -import org.apache.axis2.description.InOnlyOperationDescription;
> -import org.apache.axis2.description.OutInOperationDescription;
> +import org.apache.axis2.description.AxisOperation;
> +import org.apache.axis2.description.InOnlyAxisOperation;
> +import org.apache.axis2.description.OutInAxisOperation;
> import org.apache.axis2.description.ParameterImpl;
> -import org.apache.axis2.description.ServiceDescription;
> +import org.apache.axis2.description.AxisService;
> import org.apache.axis2.om.OMAbstractFactory;
> import org.apache.axis2.om.OMElement;
> import org.apache.axis2.om.OMNamespace;
> @@ -45,19 +46,19 @@
> 
> public static final String AXIS2_HOME = ".";
> 
> - protected static org.apache.axis2.description.OperationDescription[]
> operations;
> + protected static org.apache.axis2.description.AxisOperation[] operations;
> 
> static {
> 
> //creating the Service
> - _service = new org.apache.axis2.description.ServiceDescription(
> + _service = new org.apache.axis2.description.AxisService(
> new javax.xml.namespace.QName( "KandulaDemoService"));
> 
> //creating the operations
> - org.apache.axis2.description.OperationDescription operationDesc;
> - operations = new org.apache.axis2.description.OperationDescription[1];
> + org.apache.axis2.description.AxisOperation operationDesc;
> + operations = new org.apache.axis2.description.AxisOperation[1];
> 
> - operationDesc = new OutInOperationDescription();
> + operationDesc = new OutInAxisOperation();
> operationDesc.setName(new javax.xml.namespace.QName("creditOperation"));
> operations[0] = operationDesc;
> _service.addOperation(operationDesc);
> 
> 
> 
> 
> 
> --
> "May the SourcE be with u"
> http://webservices.apache.org/~thilina/
> http://thilinag.blogspot.com/ http://www.bloglines.com/blog/Thilina
> 




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to