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§