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:
Steven Rowe 2012-03-08 00:36:22 +00:00
parent b4ce51b46a
commit 83654b8431
1 changed files with 2 additions and 0 deletions

View File

@ -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() {