LUCENE-2037: Remove TestWatchMan from LucenbeTestCaseJ4 extends clause

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@916596 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2010-02-26 07:33:52 +00:00
parent 2bac855dfc
commit 172d8523c0
1 changed files with 2 additions and 3 deletions

View File

@ -25,7 +25,6 @@ import org.apache.lucene.util.FieldCacheSanityChecker.Insanity;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.rules.TestWatchman;
import java.io.PrintStream;
import java.util.Arrays;
@ -75,7 +74,7 @@ import static org.junit.Assert.fail;
// every test. But the functionality we used to
// get from that override is provided by InterceptTestCaseEvents
//@RunWith(RunBareWrapper.class)
public class LuceneTestCaseJ4 extends TestWatchman {
public class LuceneTestCaseJ4 {
/** Change this when development starts for new Lucene version: */
public static final Version TEST_VERSION_CURRENT = Version.LUCENE_31;
@ -279,7 +278,7 @@ public class LuceneTestCaseJ4 extends TestWatchman {
return this.name;
}
// We get here fro InterceptTestCaseEvents on the 'failed' event....
// We get here from InterceptTestCaseEvents on the 'failed' event....
public void reportAdditionalFailureInfo() {
if (seed != null) {
System.out.println("NOTE: random seed of testcase '" + getName() + "' was: " + seed);