protected bool CheckTxPowerLowWarning(DUT dut) { txPowerLW = dut.ChkTxpLW(); Thread.Sleep(50); txPowerLW = dut.ChkTxpLW(); return !txPowerLW; }
protected bool CheckTxPowerLowWarning(DUT dut) { bool isWarning = false; isWarning = dut.ChkTxpLW(); Thread.Sleep(1000); isWarning = dut.ChkTxpLW(); return(isWarning); }