You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2011/12/05 19:30:03 UTC

svn commit: r1210561 - in /cxf/branches/2.4.x-fixes: ./ rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java

Author: dkulp
Date: Mon Dec  5 18:30:02 2011
New Revision: 1210561

URL: http://svn.apache.org/viewvc?rev=1210561&view=rev
Log:
Merged revisions 1205759 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1205759 | ay | 2011-11-24 03:58:56 -0500 (Thu, 24 Nov 2011) | 1 line
  
  fixing ibm-jdk16 issue for CXF-3926's unit test
........

Modified:
    cxf/branches/2.4.x-fixes/   (props changed)
    cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java

Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java?rev=1210561&r1=1210560&r2=1210561&view=diff
==============================================================================
--- cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java (original)
+++ cxf/branches/2.4.x-fixes/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java Mon Dec  5 18:30:02 2011
@@ -143,6 +143,8 @@ public class JAXWSMethodInvokerTest exte
         Service serviceClass = EasyMock.createMock(Service.class);
         serviceClass.size();
         EasyMock.expectLastCall().andReturn(0).anyTimes();
+        serviceClass.isEmpty();
+        EasyMock.expectLastCall().andReturn(true).anyTimes();
         ex.put(Service.class, serviceClass);
         
         MethodDispatcher md = EasyMock.createMock(MethodDispatcher.class);