$this->assertEquals(true,WC_Rate_Limiter::retried_too_soon($rate_limit_id_1),'retried_too_soon allowed action to run too soon before the delay.');
$this->assertEquals(false,WC_Rate_Limiter::retried_too_soon($rate_limit_id_2),'retried_too_soon did not allow action to run for another user before the delay.');
$this->assertEquals(false,WC_Rate_Limiter::retried_too_soon($rate_limit_id_1),'retried_too_soon did not allow action to run after the designated delay.');
$this->assertEquals(false,WC_Rate_Limiter::retried_too_soon($rate_limit_id_2),'retried_too_soon did not allow action to run for another user after the designated delay.');