protected bool CheckVccHighWarning(DUT dut) { vccHW = dut.ChkVccHW(); Thread.Sleep(50); vccHW = dut.ChkVccHW(); return !vccHW; }
protected bool CheckVccHighWarning(DUT dut) { bool isWarning = false; isWarning = dut.ChkVccHW(); Thread.Sleep(1000); isWarning = dut.ChkVccHW(); return(isWarning); }