Exemple #1
0
        public void GetPromptsTest()
        {
            // TODO: add unit test for the method 'GetPrompts'
            int?   pageNumber        = null; // TODO: replace null with proper value
            int?   pageSize          = null; // TODO: replace null with proper value
            string name              = null; // TODO: replace null with proper value
            string description       = null; // TODO: replace null with proper value
            string nameOrDescription = null; // TODO: replace null with proper value

            var response = instance.GetPrompts(pageNumber, pageSize, name, description, nameOrDescription);

            Assert.IsInstanceOf <PromptEntityListing> (response, "response is PromptEntityListing");
        }