Struct pest_test::PestTester

source ·
pub struct PestTester<R: RuleType, P: Parser<R>> { /* private fields */ }

Implementations§

source§

impl<R: RuleType, P: Parser<R>> PestTester<R, P>

source

pub fn new<D: Into<PathBuf>, S: AsRef<str>>( test_dir: D, test_ext: S, rule: R, skip_rules: HashSet<R> ) -> Self

Creates a new PestTester that looks for tests in test_dir and having file extension test_ext. Code is parsed beinning at rule and the rules in skip_rule are ignored when comparing to the expected expression.

source

pub fn from_defaults(rule: R, skip_rules: HashSet<R>) -> Self

Creates a new PestTester that looks for tests in <crate root>/tests/pest and having file extension “.txt”. Code is parsed beinning at rule and the rules in skip_rule are ignored when comparing to the expected expression.

source

pub fn evaluate<N: AsRef<str>>( &self, name: N, ignore_missing_expected_values: bool ) -> Result<(), TestError<R>>

Evaluates the test with the given name. If ignore_missing_expected_values is true, then the test is not required to specify values for non-terminal nodes.

source

pub fn evaluate_strict<N: AsRef<str>>( &self, name: N ) -> Result<(), TestError<R>>

Equivalent to `self.evaluate(name, true)

Auto Trait Implementations§

§

impl<R, P> RefUnwindSafe for PestTester<R, P>where P: RefUnwindSafe, R: RefUnwindSafe,

§

impl<R, P> Send for PestTester<R, P>where P: Send, R: Send,

§

impl<R, P> Sync for PestTester<R, P>where P: Sync, R: Sync,

§

impl<R, P> Unpin for PestTester<R, P>where P: Unpin, R: Unpin,

§

impl<R, P> UnwindSafe for PestTester<R, P>where P: UnwindSafe, R: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.