From: David S. <ds...@us...> - 2006-11-16 19:17:45
|
Update of /cvsroot/junit/junit/org/junit/runner/notification In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv25645/org/junit/runner/notification Modified Files: RunListener.java Log Message: - Fixed raw types because Eclipse 3.3 told us to. - No longer dynamically check arrays that are statically typed as objects. - Update documentation to 4.2 Index: RunListener.java =================================================================== RCS file: /cvsroot/junit/junit/org/junit/runner/notification/RunListener.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- RunListener.java 25 Aug 2006 14:43:03 -0000 1.4 +++ RunListener.java 16 Nov 2006 19:17:42 -0000 1.5 @@ -70,7 +70,7 @@ /** * Called when a test will not be run, generally because a test method is annotated - * with {@link org.junit.tests.TestMethodTest.IgnoredTest}. + * with {@link org.junit.Ignore}. * @param description describes the test that will not be run */ public void testIgnored(Description description) throws Exception { |