コード例 #1
0
 protected bool CheckTempHighWarning(DUT dut)
 {
     tempHW = dut.ChkTempHW();
     Thread.Sleep(50);
     tempHW = dut.ChkTempHW();
     return !tempHW;
 }
コード例 #2
0
        protected bool CheckTempHighWarning(DUT dut)
        {
            bool isWarning = false;

            isWarning = dut.ChkTempHW();
            Thread.Sleep(1000);
            isWarning = dut.ChkTempHW();
            return(isWarning);
        }