Exemplo n.º 1
0
 public Jumper()
 {
     Limits  = new MAP200_Limits();
     Results = new MAP200_Results();
 }
Exemplo n.º 2
0
 /// <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();
 }
Exemplo n.º 3
0
 /// <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();
 }