예제 #1
0
파일: MainTests.cs 프로젝트: ggammon/ApiAi
 public void EntriesAddTest()
 {
     try
     {
         EntityService.AddEntries(new ConfigModel {
             AccesTokenDeveloper = DeveloperAccessToken
         }, ExampleEntityId, new Dictionary <string, string[]> {
             { "test3", new[] { "test 3", "test three" } },
             { "test4", new[] { "test 4", "test four" } }
         });
     }
     catch (ApiAiException ex)
     {
         // Use debug to check this "ex" value
         Assert.Fail();
     }
 }