예제 #1
0
        public async Task ShouldGetLabeledExamplesList()
        {
            using (var client = new LuisProgClient(SubscriptionKey, Region))
            {
                var examples = await client.GetAllLabeledExamplesAsync(appId, appVersion);

                Assert.IsInstanceOfType(examples, typeof(IEnumerable <ReviewExample>));
            }
        }