/// <summary>
 /// All parameters are taken from the config file of the CM_TestAutomation project. </param>
 /// <param name="UserName"> User name to use to connect to the target CM. </param>
 /// <param name="pass"> Password for the user we are using to connect to the CM. </param>        
 public static void RunFuncBvt(string endPt, string skuFile, string user, string pass)
 {
     var framework = new CmTestWithFramework();
     framework.RunFunctionalBvt(endPt, skuFile, user, pass);
 }
        /// <summary>
        /// All parameters are taken from the config file of the CM_TestAutomation project. </param>           
        public static void RunFuncBvt(string endPt, string skuFile)
        {
            string user = userName;
            string pass = passWord;

            var framework = new CmTestWithFramework();
            framework.RunFunctionalBvt(endPt, skuFile, user, pass);
        }