Return-Path: Delivered-To: apmail-avalon-cvs-archive@avalon.apache.org Received: (qmail 65517 invoked by uid 500); 14 Aug 2003 22:08:19 -0000 Mailing-List: contact cvs-help@avalon.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Avalon CVS List" Reply-To: "Avalon Developers List" Delivered-To: mailing list cvs@avalon.apache.org Received: (qmail 65504 invoked by uid 500); 14 Aug 2003 22:08:19 -0000 Received: (qmail 65490 invoked from network); 14 Aug 2003 22:08:18 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 14 Aug 2003 22:08:18 -0000 Received: (qmail 95179 invoked by uid 1449); 14 Aug 2003 22:08:31 -0000 Date: 14 Aug 2003 22:08:31 -0000 Message-ID: <20030814220831.95178.qmail@minotaur.apache.org> From: leosutic@apache.org To: avalon-sandbox-cvs@apache.org Subject: cvs commit: avalon-sandbox/attributes/unittest/src/cl2 TestClass.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N leosutic 2003/08/14 15:08:31 Added: attributes/unittest/src/test/org/apache/avalon/attributes/test ThreadSafe.java attributes/unittest/src/cl1 TestClass.java attributes/unittest/src/cl2 TestClass.java Log: Moved the unit tests into a separate project to get away from some really ugly dependencies. (API being dependent test-wise on Compiler, and Compiler being dependent on API biuld-wise) Revision Changes Path 1.1 avalon-sandbox/attributes/unittest/src/test/org/apache/avalon/attributes/test/ThreadSafe.java Index: ThreadSafe.java =================================================================== package org.apache.avalon.attributes.test; public class ThreadSafe { public ThreadSafe () { } public boolean equals (Object o) { return o instanceof ThreadSafe; } public int hashCode () { return 0; } public String toString () { return "[ThreadSafe]"; } } 1.1 avalon-sandbox/attributes/unittest/src/cl1/TestClass.java Index: TestClass.java =================================================================== /** * @TestAttribute ("1") */ public class TestClass { } 1.1 avalon-sandbox/attributes/unittest/src/cl2/TestClass.java Index: TestClass.java =================================================================== /** * @TestAttribute ("2") */ public class TestClass { } --------------------------------------------------------------------- To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org For additional commands, e-mail: cvs-help@avalon.apache.org