protected bool CheckBiasHighWarning(DUT dut)
 {
     ibiasHW = dut.ChkBiasHW();
     Thread.Sleep(50);
     ibiasHW = dut.ChkBiasHW();
     return !ibiasHW;
 }
        protected bool CheckBiasHighWarning(DUT dut)
        {
            bool isWarning = false;

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