public Jumper() { Limits = new MAP200_Limits(); Results = new MAP200_Results(); }
/// <summary> /// The PCT is the test application that is installed on the MAP200. It is necessary for the application to be running /// if any tests are to be run. /// </summary> public PCT() { pctConnection = new MAP200_PCT(); results = new MAP200_Results(); }
/// <summary> /// Fills in the actual fields of the form with the results /// </summary> /// <param name="results"></param> private void PopulateFieldsOnPageWithResults(MAP200_Results results) { insertionLossTextBox.Text = Jumper.Results.InsertionLoss1550SCA.ToString(); returnLossTextBox.Text = Jumper.Results.ReturnLoss1550SCA.ToString(); lengthTextBox.Text = Jumper.Results.LengthInMeters.ToString(); }