Skip to main content

luaur_reduce_cli/enums/
test_result.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2#[allow(non_camel_case_types)]
3pub enum TestResult {
4    BugFound, // We encountered the bug we are trying to isolate
5    NoBug,    // We did not encounter the bug we are trying to isolate
6}
7
8impl TestResult {
9    pub const BugFound: Self = Self::BugFound;
10    pub const NoBug: Self = Self::NoBug;
11}