use of com.google.cloud.dialogflow.v2.KnowledgeBase in project java-dialogflow by googleapis.
the class CreateKnowledgeBaseTest method testCreateKnowledgeBase.
@Test
public void testCreateKnowledgeBase() throws Exception {
KnowledgeBase knowledgeBase = KnowledgeBaseManagement.createKnowledgeBase(PROJECT_ID, KNOWLEDGE_DISPLAY_NAME);
knowledgeBaseName = knowledgeBase.getName();
String got = bout.toString();
assertThat(got).contains(KNOWLEDGE_DISPLAY_NAME);
}
Aggregations