Yep, the tools update just happened at r9794.
http://gwt-code-reviews.appspot.com/1374801/diff/1/user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java File user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java (left): http://gwt-code-reviews.appspot.com/1374801/diff/1/user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java#oldcode86 user/test/org/hibernate/jsr303/tck/util/TckTestSuiteWrapper.java:86: * Returns a test which will fail and log a warning message. On 2011/03/02 21:14:39, jat wrote:
Why is this removed?
It's included (verbatim) in the junit4 copy of TestSuite, but with public visibility. So I started making this public, then realized this was probably cribbed from that: from junit.framework.TestSuite: /** * Returns a test which will fail and log a warning message. */ public static Test warning(final String message) { return new TestCase("warning") { @Override protected void runTest() { fail(message); } }; } http://gwt-code-reviews.appspot.com/1374801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors