protected bool CheckTempHighWarning(DUT dut) { tempHW = dut.ChkTempHW(); Thread.Sleep(50); tempHW = dut.ChkTempHW(); return !tempHW; }
protected bool CheckTempHighWarning(DUT dut) { bool isWarning = false; isWarning = dut.ChkTempHW(); Thread.Sleep(1000); isWarning = dut.ChkTempHW(); return(isWarning); }