PestTester

Struct 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> Freeze for PestTester<R, P>
where R: Freeze,

§

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

§

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

§

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

§

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

§

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

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.