/// <summary> /// <param name="endPt"> CM Url to run batch against. </param> /// <param name="user"> 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 VerifyCSpec(string endPt, string skuFile, string user, string pass) { var framework = new CmTestWithFramework(); framework.VerifyChassisSpec(endPt, skuFile, user, pass); }
/// <summary> /// <param name="endPt"> CM Url to run batch against. </param> /// <param name="user"> 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 VerifyCSpec(string endPt, string skuFile) { string user = userName; string pass = passWord; var framework = new CmTestWithFramework(); framework.VerifyChassisSpec(endPt, skuFile, user, pass); }