mirror of https://github.com/apache/lucene.git
LUCENE-1333: don't use LuceneTestCase in contrib until we can fix the build dependency
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@687539 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
09467ad18e
commit
003a853cc8
|
@ -17,12 +17,13 @@ package org.apache.lucene.analysis.miscellaneous;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.apache.lucene.analysis.Token;
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
|
||||
public class TestSingleTokenTokenFilter extends LuceneTestCase {
|
||||
public class TestSingleTokenTokenFilter extends TestCase {
|
||||
|
||||
public void test() throws IOException {
|
||||
Token token = new Token();
|
||||
|
|
Loading…
Reference in New Issue