Exemplo n.º 1
0
 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();
     }
 }