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 DB817EA5D for ; Fri, 25 Jan 2013 10:38:57 +0000 (UTC) Received: (qmail 29099 invoked by uid 500); 25 Jan 2013 10:38:57 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 29056 invoked by uid 500); 25 Jan 2013 10:38:57 -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 28917 invoked by uid 99); 25 Jan 2013 10:38:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jan 2013 10:38:51 +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; Fri, 25 Jan 2013 10:38:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B82B32388980; Fri, 25 Jan 2013 10:38:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1438432 - /cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java Date: Fri, 25 Jan 2013 10:38:28 -0000 To: commits@cxf.apache.org From: ema@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130125103828.B82B32388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ema Date: Fri Jan 25 10:38:28 2013 New Revision: 1438432 URL: http://svn.apache.org/viewvc?rev=1438432&view=rev Log: [CXF-4735]:Add the test case not merged by previous commit Added: cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java (with props) Added: cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java?rev=1438432&view=auto ============================================================================== --- cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java (added) +++ cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java Fri Jan 25 10:38:28 2013 @@ -0,0 +1,87 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.cxf.jaxb; + +import java.lang.reflect.Method; + +import javax.xml.bind.annotation.XmlAccessType; + +import org.junit.Assert; +import org.junit.Test; + +public class UtilsTest extends Assert { + + @Test + public void testGetMethod() { + for (Method method : Utils.getGetters(MyException.class, XmlAccessType.PUBLIC_MEMBER)) { + if (method.getName().equals("toString")) { + fail("toString should not be included in get methods list"); + } + } + } + + public class MyException extends Exception { + private static final long serialVersionUID = 1L; + private String from; + private int id; + private String summary; + + public MyException() { + } // mandatory constructor + + public MyException(String from, int id, String message, String summary) { + super(message); + this.from = from; + this.id = id; + this.summary = summary; + } + + // mandatory from setter + public void setFrom(String from) { + this.from = from; + } + + // mandatory id setter + public void setId(int id) { + this.id = id; + } + + // mandatory summary setter + public void setSummary(String summary) { + this.summary = summary; + } + + public String getFrom() { + return from; + } + + public int getId() { + return id; + } + + public String getSummary() { + return summary; + } + + public String toString() { + return from + "," + id + "," + getMessage() + "," + summary; + } + } + +} Propchange: cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/2.7.x-fixes/rt/databinding/jaxb/src/test/java/org/apache/cxf/jaxb/UtilsTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date