Update of /cvsroot/junit/junit/src/org/junit/tests
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1069/src/org/junit/tests
Modified Files:
AllTests.java
Log Message:
Eclipse thinks commas at the end of array initialization expressions are OK. Javac disagrees. Moved in favor of javac
Index: AllTests.java
===================================================================
RCS file: /cvsroot/junit/junit/src/org/junit/tests/AllTests.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- AllTests.java 24 Jan 2007 16:32:59 -0000 1.6
+++ AllTests.java 26 Jan 2007 14:04:13 -0000 1.7
@@ -41,12 +41,10 @@
InaccessibleBaseClassTest.class,
SuiteMethodTest.class,
TestClassMethodsRunnerTest.class,
- IgnoreClassTest.class,
+ IgnoreClassTest.class
})
-public class AllTests {
-// public static class Compatibility {
- public static Test suite() {
- return new JUnit4TestAdapter(AllTests.class);
- }
-// }
+public class AllTests {
+ public static Test suite() {
+ return new JUnit4TestAdapter(AllTests.class);
+ }
}
|