Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D580C107E1 for ; Thu, 27 Mar 2014 16:39:50 +0000 (UTC) Received: (qmail 32984 invoked by uid 500); 27 Mar 2014 16:39:43 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 32898 invoked by uid 500); 27 Mar 2014 16:39:42 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 32625 invoked by uid 99); 27 Mar 2014 16:39:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Mar 2014 16:39:41 +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, 27 Mar 2014 16:39:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C983C23889D5; Thu, 27 Mar 2014 16:39:18 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1582390 - in /commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2: AbstractProxyFactoryAgnosticTest.java serialization/SerializationProxyTest.java stub/AbstractProxyFactoryAgnosticTest.java stub/AbstractStubTestCase.java Date: Thu, 27 Mar 2014 16:39:18 -0000 To: commits@commons.apache.org From: mbenson@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140327163918.C983C23889D5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mbenson Date: Thu Mar 27 16:39:17 2014 New Revision: 1582390 URL: http://svn.apache.org/r1582390 Log: move abstract test case to appropriate package Added: commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryAgnosticTest.java - copied, changed from r1582384, commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractProxyFactoryAgnosticTest.java Removed: commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractProxyFactoryAgnosticTest.java Modified: commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/serialization/SerializationProxyTest.java commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractStubTestCase.java Copied: commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryAgnosticTest.java (from r1582384, commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractProxyFactoryAgnosticTest.java) URL: http://svn.apache.org/viewvc/commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryAgnosticTest.java?p2=commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryAgnosticTest.java&p1=commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractProxyFactoryAgnosticTest.java&r1=1582384&r2=1582390&rev=1582390&view=diff ============================================================================== --- commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractProxyFactoryAgnosticTest.java (original) +++ commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/AbstractProxyFactoryAgnosticTest.java Thu Mar 27 16:39:17 2014 @@ -14,7 +14,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.proxy2.stub; +package org.apache.commons.proxy2; import java.util.ArrayList; import java.util.List; Modified: commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/serialization/SerializationProxyTest.java URL: http://svn.apache.org/viewvc/commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/serialization/SerializationProxyTest.java?rev=1582390&r1=1582389&r2=1582390&view=diff ============================================================================== --- commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/serialization/SerializationProxyTest.java (original) +++ commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/serialization/SerializationProxyTest.java Thu Mar 27 16:39:17 2014 @@ -27,7 +27,7 @@ import org.apache.commons.proxy2.ProxyFa import org.apache.commons.proxy2.interceptor.InterceptorUtils; import org.apache.commons.proxy2.interceptor.SwitchInterceptor; import org.apache.commons.proxy2.interceptor.matcher.invocation.DeclaredByMatcher; -import org.apache.commons.proxy2.stub.AbstractProxyFactoryAgnosticTest; +import org.apache.commons.proxy2.AbstractProxyFactoryAgnosticTest; import org.junit.After; import org.junit.Before; import org.junit.Test; Modified: commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractStubTestCase.java URL: http://svn.apache.org/viewvc/commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractStubTestCase.java?rev=1582390&r1=1582389&r2=1582390&view=diff ============================================================================== --- commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractStubTestCase.java (original) +++ commons/proper/proxy/trunk/test/src/test/java/org/apache/commons/proxy2/stub/AbstractStubTestCase.java Thu Mar 27 16:39:17 2014 @@ -23,6 +23,7 @@ import static org.junit.Assert.assertTru import java.util.Arrays; +import org.apache.commons.proxy2.AbstractProxyFactoryAgnosticTest; import org.apache.commons.proxy2.invoker.NullInvoker; import org.apache.commons.proxy2.provider.ObjectProviderUtils; import org.junit.Before; @@ -30,21 +31,21 @@ import org.junit.Test; public abstract class AbstractStubTestCase extends AbstractProxyFactoryAgnosticTest { - // ---------------------------------------------------------------------------------------------------------------------- + // ***************************************************************************************************************** // Fields - // ---------------------------------------------------------------------------------------------------------------------- + // ***************************************************************************************************************** protected StubInterface target; - // ---------------------------------------------------------------------------------------------------------------------- + // ***************************************************************************************************************** // Abstract Methods - // ---------------------------------------------------------------------------------------------------------------------- + // ***************************************************************************************************************** protected abstract StubInterface createProxy(Trainer trainer); - // ---------------------------------------------------------------------------------------------------------------------- + // ***************************************************************************************************************** // Other Methods - // ---------------------------------------------------------------------------------------------------------------------- + // ***************************************************************************************************************** @Before public final void setUpProxyFactory()