mirror of https://github.com/apache/lucene.git
LUCENE-3802: Add @Ignore annotation to AbstractGroupingTestCase to allow Maven Surefire to succeed (otherwise, Maven fails with error "No runnable methods!")
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1298240 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b4ce51b46a
commit
83654b8431
|
@ -24,6 +24,7 @@ import org.apache.lucene.search.SortField;
|
|||
import org.apache.lucene.util.BytesRef;
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
import org.apache.lucene.util._TestUtil;
|
||||
import org.junit.Ignore;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Comparator;
|
||||
|
@ -37,6 +38,7 @@ import static org.junit.Assert.fail;
|
|||
* Base class for grouping related tests.
|
||||
*/
|
||||
// TODO (MvG) : The grouping tests contain a lot of code duplication. Try to move the common code to this class..
|
||||
@Ignore("Maven Surefire will attempt to run this test suite without an @Ignore annotation.")
|
||||
public class AbstractGroupingTestCase extends LuceneTestCase {
|
||||
|
||||
protected String generateRandomNonEmptyString() {
|
||||
|
|
Loading…
Reference in New Issue