Remove forbidden @Ignore on base test cases

This commit is contained in:
Christoph Büscher 2015-08-04 11:09:30 +02:00
parent 9756202d0f
commit fafaac6a88
2 changed files with 2 additions and 5 deletions

View File

@ -64,7 +64,6 @@ import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import java.io.IOException;
@ -75,7 +74,6 @@ import static org.hamcrest.Matchers.not;
import static org.hamcrest.Matchers.notNullValue;
import static org.hamcrest.Matchers.nullValue;
@Ignore
public abstract class BaseQueryTestCase<QB extends AbstractQueryBuilder<QB>> extends ESTestCase {
protected static final String OBJECT_FIELD_NAME = "mapped_object";

View File

@ -19,14 +19,13 @@
package org.elasticsearch.index.query;
import org.junit.Ignore;
import org.junit.Test;
import static org.hamcrest.Matchers.is;
@Ignore
public abstract class BaseTermQueryTestCase<QB extends BaseTermQueryBuilder<QB>> extends BaseQueryTestCase<QB> {
@Override
protected final QB doCreateTestQueryBuilder() {
String fieldName = null;
Object value;