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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]