Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchan2007-05-23 15:10:51 +0000
committerkchan2007-05-23 15:10:51 +0000
commit42640a982bcc21c9702682a1b2e534541923c591 (patch)
tree39edea81c1bf6f564aa2979ffec9640c96465a78 /axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org
parent02e6fc4328eda468298de4a50bf2b90e3207ee8a (diff)
downloadwebtools.webservices-42640a982bcc21c9702682a1b2e534541923c591.tar.gz
webtools.webservices-42640a982bcc21c9702682a1b2e534541923c591.tar.xz
webtools.webservices-42640a982bcc21c9702682a1b2e534541923c591.zip
[176227] Generate test case not working.
Diffstat (limited to 'axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org')
-rw-r--r--axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2WSDL2JavaCommand.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2WSDL2JavaCommand.java b/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2WSDL2JavaCommand.java
index 36135781b..25f46f034 100644
--- a/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2WSDL2JavaCommand.java
+++ b/axis2/bundles/org.eclipse.jst.ws.axis2.creation.core/src/org/eclipse/jst/ws/axis2/creation/core/command/Axis2WSDL2JavaCommand.java
@@ -13,6 +13,7 @@
* runtime to the framework for 168762
* 20070426 183046 sandakith@wso2.com - Lahiru Sandakith
* 20070507 184729 sandakith@wso2.com - Lahiru Sandakith
+ * 20070518 187311 sandakith@wso2.com - Lahiru Sandakith, Fixing test resource addition
*******************************************************************************/
package org.eclipse.jst.ws.axis2.creation.core.command;
@@ -77,7 +78,7 @@ public class Axis2WSDL2JavaCommand extends AbstractDataModelOperation {
false, //sync always false
true, //is serverside true
model.isServerXMLCheck(),
- model.isTestCaseCheck(),
+ false, //No test case with out stub
model.isGenerateAllCheck(),
(model.getServiceName()!=null)?model.getServiceName():null,
(model.getPortName()!=null)?model.getPortName():null,

Back to the top