use of infoeval.main.WikiData.WikiParsing in project Info-Evaluation by TechnionYP5777.
the class WikiParsingTest method test7.
@Test
public void test7() throws IOException {
WikiParsing wp = new WikiParsing("https://en.wikipedia.org/wiki/Slash");
wp.Parse("married");
wp.CheckAmbiguities();
assert wp.isConflictedName();
}
use of infoeval.main.WikiData.WikiParsing in project Info-Evaluation by TechnionYP5777.
the class WikiParsingTest method test10.
@Test
public void test10() throws IOException {
WikiParsing wp = new WikiParsing("https://en.wikipedia.org/wiki/Agnieszka");
wp.Parse("refer");
wp.CheckAmbiguities();
assert wp.getNames().size() == 26;
}
use of infoeval.main.WikiData.WikiParsing in project Info-Evaluation by TechnionYP5777.
the class WikiParsingTest method test3.
@Test
public void test3() throws IOException {
WikiParsing wp = new WikiParsing("https://en.wikipedia.org/wiki/Michelle_Williams");
wp.Parse("refer");
assert wp.isConflictedName();
}
Aggregations