[][src]Struct lit::Config

pub struct Config {
    pub supported_file_extensions: Vec<String>,
    pub test_paths: Vec<PathBuf>,
    pub constants: HashMap<String, String>,
    pub variable_lookup: VariableLookup,
    pub cleanup_temporary_files: bool,
    pub dump_variable_resolution: bool,
}

The configuration of the test runner.

Fields

supported_file_extensions: Vec<String>

A list of file extensions which contain tests.

test_paths: Vec<PathBuf>

Paths to tests or folders containing tests.

constants: HashMap<String, String>

Constants that tests can refer to via @<name> syntax.

variable_lookup: VariableLookup

A function which used to dynamically lookup variables.

The default variable lookup can be found at Config::DEFAULT_VARIABLE_LOOKUP.

In your own custom variable lookups, most of the time you will want to include a fallback call to Config::DEFAULT_VARIABLE_LOOKUP.

cleanup_temporary_files: bool

Whether temporary files generated by the tests should be cleaned up, where possible.

This includes temporary files created by using @tempfile variables.

dump_variable_resolution: bool

Whether verbose information about resolved variables should be printed to stderr.

Methods

impl Config[src]

pub const DEFAULT_VARIABLE_LOOKUP: VariableLookup[src]

The default variable lookup function.

The supported variables are:

  • Any variable containing the string "tempfile"
    • Each distinct variable will be resolved to a distinct temporary file path.

pub fn add_extension<S>(&mut self, ext: S) where
    S: Into<String>, 
[src]

Marks a file extension as supported by the runner.

We only attempt to run tests for files within the extension whitelist.

pub fn add_search_path<P>(&mut self, path: P) where
    P: Into<String>, 
[src]

Adds a search path to the test runner.

We will recurse through the path to find tests.

pub fn is_extension_supported(&self, extension: &str) -> bool[src]

Checks if a given extension will have tests run on it

pub fn lookup_variable<'a>(
    &self,
    name: &str,
    variables: &'a mut HashMap<String, String>
) -> &'a str
[src]

Looks up a variable.

Trait Implementations

impl Clone for Config[src]

impl Debug for Config[src]

impl Default for Config[src]

Auto Trait Implementations

impl RefUnwindSafe for Config

impl Send for Config

impl Sync for Config

impl Unpin for Config

impl UnwindSafe for Config

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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