use of main.database.TableTuple in project Info-Evaluation by TechnionYP5777.
the class AnalyzeParagraphTest method test10.
@Test
public void test10() {
final Sentence sent = new Sentence("Saul Hudson was arrested for cheating by Axl Rose on Jan 25 1992 .");
final TableTuple tt = new AnalyzeParagragh(sent, "1992").Analyze();
assertEquals("Saul Hudson", tt.getName());
assertEquals("01/25/1992", tt.getDate());
assertEquals("cheating", tt.getReason());
}
use of main.database.TableTuple in project Info-Evaluation by TechnionYP5777.
the class AnalyzeParagraphTest method test12.
@Test
public void test12() {
final Sentence sent = new Sentence("The Weeknd was arrested for punching a dancer in a night club on April 11 2015");
final TableTuple tt = new AnalyzeParagragh(sent, "2015").Analyze();
assertEquals("The Weeknd", tt.getName());
assertEquals("04/11/2015", tt.getDate());
assertEquals("dancer punching", tt.getReason());
}
use of main.database.TableTuple in project Info-Evaluation by TechnionYP5777.
the class AnalyzeParagraphTest method test3.
@Test
public void test3() {
final Sentence sent = new Sentence("Vin Diesel was arrested for furious driving on August 14, 2002 in California");
final TableTuple tt = new AnalyzeParagragh(sent, "2002").Analyze();
assertEquals("Vin Diesel", tt.getName());
assertEquals("driving furious in California", tt.getReason());
assertEquals("08/14/2002", tt.getDate());
}
use of main.database.TableTuple in project Info-Evaluation by TechnionYP5777.
the class AnalyzeParagraphTest method test2.
@Test
public void test2() {
final Sentence sent = new Sentence("Justin Bieber was arrested for drunk driving in Georgia on February 22, 2015 .");
final TableTuple tt = new AnalyzeParagragh(sent, "2015").Analyze();
assertEquals("Justin Bieber", tt.getName());
assertEquals("drunk driving in Georgia", tt.getReason());
assertEquals("02/22/2015", tt.getDate());
}
use of main.database.TableTuple in project Info-Evaluation by TechnionYP5777.
the class AnalyzeParagraphTest method test7.
@Test
public void test7() {
final Sentence sent = new Sentence("Tito Ortiz was arrested for driving under the influence after he drove his Porsche Panamera into the concrete median on Jan 6 on the 405 freeway in L.A. at 4am.\n");
final TableTuple tt = new AnalyzeParagragh(sent, "2015").Analyze();
assertEquals("Tito Ortiz", tt.getName());
assertEquals("driving under influence", tt.getReason());
assertEquals("01/06/2015", tt.getDate());
}
Aggregations