Author: seanoc
Date: Fri May 16 03:57:06 2008
New Revision: 657015
URL: http://svn.apache.org/viewvc?rev=657015&view=rev
Log:
remove System.out, uncommented a test
Modified:
cxf/trunk/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/jaxws/CodeGenBugTest.java
Modified:
cxf/trunk/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/jaxws/CodeGenBugTest.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/jaxws/CodeGenBugTest.java?rev=657015&r1=657014&r2=657015&view=diff
==============================================================================
---
cxf/trunk/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/jaxws/CodeGenBugTest.java
(original)
+++
cxf/trunk/tools/wsdlto/test/src/test/java/org/apache/cxf/tools/wsdlto/jaxws/CodeGenBugTest.java
Fri May 16 03:57:06 2008
@@ -915,7 +915,7 @@
assertTrue(e.getMessage().indexOf("Summary: Failures: 5,
Warnings: 0") != -1);
}
}
- /*
+
@Test
public void testTwoJaxwsBindingFile() throws Exception {
env.put(ToolConstants.CFG_WSDLURL,
getLocation("/wsdl2java_wsdl/hello_world.wsdl"));
@@ -932,7 +932,7 @@
Method customizedMethod = clz.getMethod("myGreetMe", new Class[]
{String.class});
assertNotNull("Customized method 'myGreetMe' in MyGreeter.class is not
found", customizedMethod);
}
- */
+
@Test
@@ -949,8 +949,6 @@
assertTrue(results1.contains(" * this is class javadoc"));
assertTrue(results1.contains(" * this is method javadoc"));
- System.out.println(output.getCanonicalPath());
-
List<String> results2 = FileUtils.readLines(new
File(output.getCanonicalPath(),
"org/mypkg/SOAPService.java"));