protected bool CheckTempLowWarning(DUT dut) { tempLW = dut.ChkTempLW(); Thread.Sleep(50); tempLW = dut.ChkTempLW(); return !tempLW; }
protected bool CheckTempLowWarning(DUT dut) { bool isWarning = false; isWarning = dut.ChkTempLW(); Thread.Sleep(1000); isWarning = dut.ChkTempLW(); return(isWarning); }