public void GetSystempromptsTest() { // TODO: add unit test for the method 'GetSystemprompts' int? pageNumber = null; // TODO: replace null with proper value int? pageSize = null; // TODO: replace null with proper value string sortBy = null; // TODO: replace null with proper value string sortOrder = 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.GetSystemprompts(pageNumber, pageSize, sortBy, sortOrder, name, description, nameOrDescription); Assert.IsInstanceOf <SystemPromptEntityListing> (response, "response is SystemPromptEntityListing"); }