fixed bug with coding
git-svn-id: https://russianmorphology.googlecode.com/svn/trunk@59 d817d54c-26ab-11de-abc9-2f7d1455ff7a
This commit is contained in:
parent
ad3c9f7ccc
commit
68fd53baff
208473
english/src/main/resources/org/apache/lucene/morphology/english/morph.info
Normal file
208473
english/src/main/resources/org/apache/lucene/morphology/english/morph.info
Normal file
File diff suppressed because it is too large
Load Diff
@ -21,7 +21,7 @@ import org.junit.Test;
|
|||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
public class RussianLuceneMorphTest {
|
public class EnglishLuceneMorphTest {
|
||||||
private LuceneMorph luceneMorph;
|
private LuceneMorph luceneMorph;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
@ -34,5 +34,8 @@ public class RussianLuceneMorphTest {
|
|||||||
System.out.println(luceneMorph.getMorhInfo("purchases"));
|
System.out.println(luceneMorph.getMorhInfo("purchases"));
|
||||||
System.out.println(luceneMorph.getMorhInfo("existing"));
|
System.out.println(luceneMorph.getMorhInfo("existing"));
|
||||||
System.out.println(luceneMorph.getMorhInfo("was"));
|
System.out.println(luceneMorph.getMorhInfo("was"));
|
||||||
|
System.out.println(luceneMorph.getMorhInfo("men"));
|
||||||
|
System.out.println(luceneMorph.getMorhInfo("bore"));
|
||||||
|
System.out.println(luceneMorph.getMorhInfo("came"));
|
||||||
}
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
@ -16,10 +16,17 @@
|
|||||||
package org.apache.lucene.morphology.russian;
|
package org.apache.lucene.morphology.russian;
|
||||||
|
|
||||||
import org.apache.lucene.morphology.LuceneMorph;
|
import org.apache.lucene.morphology.LuceneMorph;
|
||||||
|
import static org.hamcrest.Matchers.equalTo;
|
||||||
|
import static org.junit.Assert.assertThat;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
public class RussianLuceneMorphTest {
|
public class RussianLuceneMorphTest {
|
||||||
private LuceneMorph luceneMorph;
|
private LuceneMorph luceneMorph;
|
||||||
@ -31,18 +38,18 @@ public class RussianLuceneMorphTest {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void shoudGetCorrentMorphInfo() throws IOException {
|
public void shoudGetCorrentMorphInfo() throws IOException {
|
||||||
// InputStream stream = this.getClass().getResourceAsStream("/org/apache/lucene/morphology/russian/russian-morphology-test.txt");
|
InputStream stream = this.getClass().getResourceAsStream("/org/apache/lucene/morphology/russian/russian-morphology-test.txt");
|
||||||
// BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(stream, "UTF-8"));
|
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(stream, "UTF-8"));
|
||||||
// String s = bufferedReader.readLine();
|
String s = bufferedReader.readLine();
|
||||||
// while (s != null) {
|
while (s != null) {
|
||||||
// String[] qa = s.trim().split(" ");
|
String[] qa = s.trim().split(" ");
|
||||||
// Set<String> result = new HashSet<String>();
|
Set<String> result = new HashSet<String>();
|
||||||
// for (int i = 1; i < qa.length; i++) {
|
for (int i = 1; i < qa.length; i++) {
|
||||||
// result.add(qa[i]);
|
result.add(qa[i]);
|
||||||
// }
|
}
|
||||||
// Set<String> stringList = new HashSet<String>(luceneMorph.getMorhInfo(qa[0]));
|
Set<String> stringList = new HashSet<String>(luceneMorph.getMorhInfo(qa[0]));
|
||||||
// assertThat(stringList, equalTo(result));
|
assertThat(stringList, equalTo(result));
|
||||||
// s = bufferedReader.readLine();
|
s = bufferedReader.readLine();
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
тест тест тесто
|
еду еда ехать
|
||||||
тестов тест
|
тестов тест
|
||||||
вина вино вина
|
вина вино вина
|
||||||
вино вино
|
вино вино
|
||||||
еду еда ехать
|
|
||||||
ехать ехать
|
ехать ехать
|
||||||
ананасов ананас ананасовый
|
ананасов ананас ананасовый
|
||||||
сухой сухой
|
сухой сухой
|
||||||
@ -16,4 +15,5 @@
|
|||||||
красивая красивый
|
красивая красивый
|
||||||
тосклив тоскливый
|
тосклив тоскливый
|
||||||
лучший хороший
|
лучший хороший
|
||||||
на на
|
на на
|
||||||
|
тест тест тесто
|
Loading…
x
Reference in New Issue
Block a user