use of org.openhab.ui.habot.nlp.Intent in project habot by ghys.
the class TrainerDeTest method testCreateRule.
@Test
public void testCreateRule() throws Exception {
Intent actual;
this.trainer = new IntentTrainer("de", skills, null, "alphanumeric");
actual = interpret("einen Timer stellen");
assertEquals(Skills.CREATE_RULE, actual.getName());
actual = interpret("Erstelle eine Regel, die um 8 Uhr läuft.");
assertEquals(Skills.CREATE_RULE, actual.getName());
}
Aggregations