use of com.google.cloud.dialogflow.cx.v3beta1.MatchIntentRequest in project java-dialogflow-cx by googleapis.
the class ITSystemTest method matchIntentTest.
@Test
public void matchIntentTest() {
String session = String.format("%s/sessions/%s", agentName, ID);
MatchIntentRequest request = MatchIntentRequest.newBuilder().setSession(session).setQueryInput(QUERY_INPUT).build();
MatchIntentResponse matchIntentResponse = sessionsClient.matchIntent(request);
assertTrue(matchIntentResponse.getMatchesList().size() > 0);
assertEquals(TEXT, matchIntentResponse.getText());
}
Aggregations