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

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