mirror of https://github.com/apache/lucene.git
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:
parent
2bac855dfc
commit
172d8523c0
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue