Struct test_casing::decorators::Retry

source ·
pub struct Retry { /* private fields */ }
Expand description

Test decorator that retries a wrapped test the specified number of times, potentially with a delay between retries.

§Examples

use test_casing::{decorate, decorators::Retry};
use std::time::Duration;

const RETRY_DELAY: Duration = Duration::from_millis(200);

#[test]
#[decorate(Retry::times(3).with_delay(RETRY_DELAY))]
fn test_with_retries() {
    // test logic
}

Implementations§

source§

impl Retry

source

pub const fn times(times: usize) -> Self

Specified the number of retries. The delay between retries is zero.

source

pub const fn with_delay(self, delay: Duration) -> Self

Specifies the delay between retries.

source

pub const fn on_error<E>(self, matcher: fn(_: &E) -> bool) -> RetryErrors<E>

Converts this retry specification to only retry specific errors.

Trait Implementations§

source§

impl Debug for Retry

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl DecorateTest<()> for Retry

source§

fn decorate_and_test<F: TestFn<()>>(&self, test_fn: F)

Decorates the provided test function and runs the test.
source§

impl<E: Display> DecorateTest<Result<(), E>> for Retry

source§

fn decorate_and_test<F>(&self, test_fn: F) -> Result<(), E>
where F: TestFn<Result<(), E>>,

Decorates the provided test function and runs the test.

Auto Trait Implementations§

§

impl Freeze for Retry

§

impl RefUnwindSafe for Retry

§

impl Send for Retry

§

impl Sync for Retry

§

impl Unpin for Retry

§

impl UnwindSafe for Retry

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.