public void GetRulesetsTest()
        {
            // TODO: add unit test for the method 'GetRulesets'
            int?   pageSize   = null; // TODO: replace null with proper value
            int?   pageNumber = null; // TODO: replace null with proper value
            string filterType = null; // TODO: replace null with proper value
            string name       = 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
            var    response   = instance.GetRulesets(pageSize, pageNumber, filterType, name, sortBy, sortOrder);

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