mirror of https://github.com/apache/lucene.git
LUCENE-5999: Move standard analyzer tests on trunk to match location on branch_5x
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1630223 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
791ccec5c0
commit
848b0af0e0
|
@ -35,7 +35,7 @@ import org.apache.lucene.analysis.util.CharArraySet;
|
|||
* It is very similar to the snowball portuguese algorithm but not exactly the same.
|
||||
*
|
||||
*/
|
||||
public class TestBrazilianStemmer extends BaseTokenStreamTestCase {
|
||||
public class TestBrazilianAnalyzer extends BaseTokenStreamTestCase {
|
||||
|
||||
public void testWithSnowballExamples() throws Exception {
|
||||
check("boa", "boa");
|
|
@ -30,7 +30,7 @@ import org.apache.lucene.analysis.util.CharArraySet;
|
|||
* The code states that it uses the snowball algorithm, but tests reveal some differences.
|
||||
*
|
||||
*/
|
||||
public class TestDutchStemmer extends BaseTokenStreamTestCase {
|
||||
public class TestDutchAnalyzer extends BaseTokenStreamTestCase {
|
||||
|
||||
public void testWithSnowballExamples() throws Exception {
|
||||
check("lichaamsziek", "lichaamsziek");
|
|
@ -1,4 +1,4 @@
|
|||
package org.apache.lucene.analysis.core;
|
||||
package org.apache.lucene.analysis.standard;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
|
@ -27,8 +27,6 @@ import org.apache.lucene.analysis.BaseTokenStreamTestCase;
|
|||
import org.apache.lucene.analysis.MockGraphTokenFilter;
|
||||
import org.apache.lucene.analysis.TokenStream;
|
||||
import org.apache.lucene.analysis.Tokenizer;
|
||||
import org.apache.lucene.analysis.standard.StandardAnalyzer;
|
||||
import org.apache.lucene.analysis.standard.StandardTokenizer;
|
||||
import org.apache.lucene.util.TestUtil;
|
||||
|
||||
public class TestStandardAnalyzer extends BaseTokenStreamTestCase {
|
|
@ -1,4 +1,4 @@
|
|||
package org.apache.lucene.analysis.core;
|
||||
package org.apache.lucene.analysis.standard;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@ -1,4 +1,4 @@
|
|||
package org.apache.lucene.analysis.core;
|
||||
package org.apache.lucene.analysis.standard;
|
||||
|
||||
import org.apache.lucene.analysis.Analyzer;
|
||||
import org.apache.lucene.analysis.BaseTokenStreamTestCase;
|
||||
|
@ -6,11 +6,11 @@ import org.apache.lucene.analysis.TokenFilter;
|
|||
import org.apache.lucene.analysis.TokenStream;
|
||||
import org.apache.lucene.analysis.Tokenizer;
|
||||
import org.apache.lucene.analysis.standard.UAX29URLEmailTokenizer;
|
||||
import org.apache.lucene.analysis.standard.WordBreakTestUnicode_6_3_0;
|
||||
import org.apache.lucene.analysis.tokenattributes.TypeAttribute;
|
||||
import org.apache.lucene.util.TestUtil;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.Reader;
|
||||
|
@ -20,7 +20,6 @@ import java.util.ArrayList;
|
|||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Random;
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
/*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@ -1,4 +1,4 @@
|
|||
package org.apache.lucene.analysis.core;
|
||||
package org.apache.lucene.analysis.standard;
|
||||
|
||||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
@ -48,14 +48,14 @@ org.apache.lucene.analysis.core.TestDuelingAnalyzers=1844,4104,2325,2041,2568,19
|
|||
org.apache.lucene.analysis.core.TestFactories=13995,17156,12500,15103,14760,22010,13206
|
||||
org.apache.lucene.analysis.core.TestKeywordAnalyzer=241,205,234,403,223,326,209
|
||||
org.apache.lucene.analysis.core.TestRandomChains=3048,4646,3050,5003,4274,4400,3679
|
||||
org.apache.lucene.analysis.core.TestStandardAnalyzer=3672,3118,2532,4071,2379,2271,2479
|
||||
org.apache.lucene.analysis.standard.TestStandardAnalyzer=3672,3118,2532,4071,2379,2271,2479
|
||||
org.apache.lucene.analysis.core.TestStopAnalyzer=31,39,16,22,66,10,19
|
||||
org.apache.lucene.analysis.core.TestStopFilter=76,83,64,12,148,19,19
|
||||
org.apache.lucene.analysis.core.TestStopFilterFactory=31,7,27,92,10,29,22
|
||||
org.apache.lucene.analysis.core.TestTypeTokenFilter=13,26,18,352,18,113,44
|
||||
org.apache.lucene.analysis.core.TestTypeTokenFilterFactory=23,36,85,60,23,16,112
|
||||
org.apache.lucene.analysis.core.TestUAX29URLEmailAnalyzer=315,243,502,493,183,240,564
|
||||
org.apache.lucene.analysis.core.TestUAX29URLEmailTokenizer=1656,837,1071,1402,2610,1318,1134
|
||||
org.apache.lucene.analysis.standard.TestUAX29URLEmailAnalyzer=315,243,502,493,183,240,564
|
||||
org.apache.lucene.analysis.standard.TestUAX29URLEmailTokenizer=1656,837,1071,1402,2610,1318,1134
|
||||
org.apache.lucene.analysis.cz.TestCzechAnalyzer=610,176,302,835,120,221,92
|
||||
org.apache.lucene.analysis.cz.TestCzechStemFilterFactory=8,10,8,18,23,35,53
|
||||
org.apache.lucene.analysis.cz.TestCzechStemmer=38,126,47,24,242,96,34
|
||||
|
|
Loading…
Reference in New Issue