From: David S. <ds...@us...> - 2007-02-21 20:26:34
|
Update of /cvsroot/junit/junit/src/org/junit/runner/manipulation In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2290/src/org/junit/runner/manipulation Modified Files: Sorter.java Log Message: Fixing exception handling and documentation Index: Sorter.java =================================================================== RCS file: /cvsroot/junit/junit/src/org/junit/runner/manipulation/Sorter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Sorter.java 21 Nov 2006 18:53:40 -0000 1.1 +++ Sorter.java 21 Feb 2007 20:26:29 -0000 1.2 @@ -5,10 +5,11 @@ import org.junit.runner.Description; import org.junit.runner.Runner; -//TODO add an example /** * A <code>Sorter</code> orders tests. In general you will not need * to use a <code>Sorter</code> directly. Instead, use {@link org.junit.runner.Request#sortWith(Comparator)}. + * + * */ public class Sorter implements Comparator<Description> { private final Comparator<Description> fComparator; |