From: David S. <ds...@us...> - 2006-03-10 00:52:19
|
Update of /cvsroot/junit/junit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1356 Modified Files: build.xml done.txt to-do.txt Added Files: acknowledgements.txt Log Message: Patched javadoc, thanks to Matthias Schmidt RunWith is @Inherited Added acknowledgements to-do is up to date --- NEW FILE: acknowledgements.txt --- 2006 March 9 Matthias Schmidt: improved org.junit package javadoc Index: build.xml =================================================================== RCS file: /cvsroot/junit/junit/build.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- build.xml 27 Feb 2006 19:01:37 -0000 1.15 +++ build.xml 10 Mar 2006 00:52:15 -0000 1.16 @@ -1,6 +1,6 @@ <project name="junit" default="dist" basedir="."> <property file="${user.home}/.junit.properties" /> - <property name="version" value="4.0" /> + <property name="version" value="4.1" /> <property name="dist" value="junit${version}" /> <property name="versionfile" value="junit/runner/Version.java" /> <property name="zipfile" value="${dist}.zip" /> Index: done.txt =================================================================== RCS file: /cvsroot/junit/junit/done.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- done.txt 15 Feb 2006 22:55:27 -0000 1.2 +++ done.txt 10 Mar 2006 00:52:15 -0000 1.3 @@ -39,5 +39,12 @@ * make sure TestListener is symmetric and meets needs of runner developers * TestRunEvent * Decide how we ship JUnit-- 1.5 only or hybrid - + * README.html +* add javadoc to API interfaces and Annotations + http://java.sun.com/j2se/javadoc/writingapispecs/index.html +* Merge branch back into head +* review Ant scripts +* make suites simpler for both the IDE providers and the users +* ClassRequest should search up the hierarchy for the requested Class to look for @RunWith + \ No newline at end of file Index: to-do.txt =================================================================== RCS file: /cvsroot/junit/junit/to-do.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- to-do.txt 15 Feb 2006 22:55:28 -0000 1.2 +++ to-do.txt 10 Mar 2006 00:52:15 -0000 1.3 @@ -1,26 +1,18 @@ -Before first public release: * update documentation * new cook's tour * update Test Infected - * README.html -* add javadoc to API interfaces and Annotations - http://java.sun.com/j2se/javadoc/writingapispecs/index.html -* review Ant scripts -* Merge branch back into head -* ClassRequest should search up the hierarchy for the requested Class to look for @RunWith * Should there be a "prefix" annotation for Suites? * This would allow two Suites with different BeforeClass/AfterClass behaviors, but the same component tests, to co-exist -Before next JUnit 4 release: * update the build process * automatically upload a new JAR * update site for plug-in version? -* make suites simpler for both the IDE providers and the users -* class level test annotations? * Ant * Basic task * support testing run once initialization code e.g. class Foo {{...}} * Automatically add failing tests to the Known Defects section of the README.html - +* Create test target in ant +* Organize org.junit.tests +* Use <pre></pre> for javadoc code examples \ No newline at end of file |