From: David S. <ds...@us...> - 2006-09-26 16:51:44
|
Update of /cvsroot/junit/junit/org/junit In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv6170/org/junit Modified Files: Tag: saff_r41_runner_refactoring Before.java BeforeClass.java Added Files: Tag: saff_r41_runner_refactoring RunSuperclassMethodsFirst.java Log Message: Begin pushing functionality out of operator classes (like TestIntrospector) and into domain classes (like JavaClass) --- NEW FILE: RunSuperclassMethodsFirst.java --- package org.junit; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.ANNOTATION_TYPE) public @interface RunSuperclassMethodsFirst { } Index: Before.java =================================================================== RCS file: /cvsroot/junit/junit/org/junit/Before.java,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -u -d -r1.4 -r1.4.2.1 --- Before.java 25 Aug 2006 14:43:02 -0000 1.4 +++ Before.java 26 Sep 2006 16:51:39 -0000 1.4.2.1 @@ -32,6 +32,7 @@ */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) +@RunSuperclassMethodsFirst public @interface Before { } Index: BeforeClass.java =================================================================== RCS file: /cvsroot/junit/junit/org/junit/BeforeClass.java,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -u -d -r1.3 -r1.3.2.1 --- BeforeClass.java 25 Aug 2006 14:43:02 -0000 1.3 +++ BeforeClass.java 26 Sep 2006 16:51:39 -0000 1.3.2.1 @@ -31,5 +31,6 @@ */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) +@RunSuperclassMethodsFirst public @interface BeforeClass { } |