Struct TestModule

Source
pub struct TestModule { /* private fields */ }
Expand description

Represents a Rust module that contains tests.

Provides parent configuration for each Test:

  • Base namepaths
  • Base fixture and tmp directories
  • The intended UseCase for each test

Each Test has one parent TestModule

This is statically associated with a module using a Module wrapper.

Implementations§

Source§

impl TestModule

Source

pub fn base_temp_dir(&self) -> &Path

Source

pub fn test_builder(&self, name: &'static str) -> TestBuilder<'_, '_>

Creates a TestBuilder.

Trait Implementations§

Source§

impl Debug for TestModule

Source§

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

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

impl PartialEq for TestModule

Source§

fn eq(&self, other: &TestModule) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Testing for TestModule

Source§

fn use_case(&self) -> UseCase

The testing use-case
Source§

fn namepath(&self) -> &Namepath

The namepath
Source§

fn fixture_dir(&self) -> &Path

The canonical fixture directory, if configured to use one. By default, this is based on the use-case and namepath
Source§

fn temp_dir(&self) -> &Path

The canonical temporary directory, if configured to use one. By default, this is based on the use-case and namepath. The directory is created on construction and deleted upon destruction.
Source§

impl Eq for TestModule

Source§

impl StructuralPartialEq for TestModule

Auto Trait Implementations§

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>,

Source§

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>,

Source§

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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V