Example #1
0
        internal void Execute(ref PluginSequence.TestInfo myTestInfo, ref PluginSequence.UUTData myUUTData, ref PluginSequence.CommonData myCommonData)
        {
            try
            {
                switch (myTestInfo.TestLabel)
                {
                case "InitNistCalLeakData":
                {
                    DoCalLeakDataEntry(ref myTestInfo, ref myUUTData, ref myCommonData);
                }
                break;

                case "CalibrateSystem":
                {
                    DoInternalCalibration(ref myTestInfo, ref myUUTData, ref myCommonData);
                }
                break;

                case "DailySelfTest":
                {
                }
                break;

                default:
                    break;
                }
            }
            catch (Exception)
            {
                throw;
            }
        }
Example #2
0
 private void DoInternalCalibration(ref PluginSequence.TestInfo myTestInfo, ref PluginSequence.UUTData myUUTData, ref PluginSequence.CommonData myCommonData)
 {
     try
     {
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #3
0
 private void DoCalLeakDataEntry(ref PluginSequence.TestInfo myTestInfo, ref PluginSequence.UUTData myUUTData, ref PluginSequence.CommonData myCommonData)
 {
     try
     {
         // call form for data entry for NIST Calibrated leak.
         FormNistLeak myNistDataForm = new FormNistLeak();
         myNistDataForm.ShowDialog();
     }
     catch (Exception)
     {
         throw;
     }
 }