Trait nextest_runner::partition::Partitioner[][src]

pub trait Partitioner: Debug {
    fn test_matches(&mut self, test_name: &str) -> bool;
}
Expand description

Represents an individual partitioner, typically scoped to a test binary.

Required methods

Returns true if the given test name matches the partition.

Implementors