public void FindServicesTest()
        {
            var sscService = new SSC.Internal.SccPrivateService();
            var req        = new Models.FindServicesRequestObj();

            req.Filter = new Models.FindServicesRequestObjFilter
            {
                KeyWords = new System.Collections.Generic.List <string>
                {
                    "VIS"
                }
            };

            var result = sscService.FindServices(req);

            Assert.IsNotNull(result);
        }