pub use super::boundary::BoundaryLengths;
pub use super::edge_cases::EdgeCases;
pub use super::exhaustive::ExhaustiveByteRange;
pub use super::pathological::Pathological;
pub use super::random::RandomUniform;
pub use super::u32_pathological::U32Pathological;
use crate::spec::types::OpSignature;
#[inline]
pub fn default_generators() -> Vec<Box<dyn InputGenerator>> {
vec![
Box::new(ExhaustiveByteRange),
Box::new(EdgeCases),
Box::new(RandomUniform),
Box::new(Pathological),
Box::new(BoundaryLengths),
Box::new(U32Pathological),
]
}