Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1B95494F8 for ; Thu, 24 Nov 2011 08:59:24 +0000 (UTC) Received: (qmail 80262 invoked by uid 500); 24 Nov 2011 08:59:22 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 80206 invoked by uid 500); 24 Nov 2011 08:59:20 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 80199 invoked by uid 99); 24 Nov 2011 08:59:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Nov 2011 08:59:18 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Nov 2011 08:59:17 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 47EC323889C5 for ; Thu, 24 Nov 2011 08:58:57 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1205759 - /cxf/trunk/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java Date: Thu, 24 Nov 2011 08:58:57 -0000 To: commits@cxf.apache.org From: ay@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111124085857.47EC323889C5@eris.apache.org> Author: ay Date: Thu Nov 24 08:58:56 2011 New Revision: 1205759 URL: http://svn.apache.org/viewvc?rev=1205759&view=rev Log: fixing ibm-jdk16 issue for CXF-3926's unit test Modified: cxf/trunk/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java Modified: cxf/trunk/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java URL: http://svn.apache.org/viewvc/cxf/trunk/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java?rev=1205759&r1=1205758&r2=1205759&view=diff ============================================================================== --- cxf/trunk/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java (original) +++ cxf/trunk/rt/frontend/jaxws/src/test/java/org/apache/cxf/jaxws/JAXWSMethodInvokerTest.java Thu Nov 24 08:58:56 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);