Sha256: fa8c9187028b9bc54856977b0914676f62101010e7a9450abd577fd78c89552f
Contents?: true
Size: 787 Bytes
Versions: 29
Compression:
Stored size: 787 Bytes
Contents
//! Specialized fuzzing for flags types using `arbitrary`. use crate::Flags; /** Generate some arbitrary flags value with only known bits set. */ pub fn arbitrary<'a, B: Flags>(u: &mut arbitrary::Unstructured<'a>) -> arbitrary::Result<B> where B::Bits: arbitrary::Arbitrary<'a>, { B::from_bits(u.arbitrary()?).ok_or_else(|| arbitrary::Error::IncorrectFormat) } #[cfg(test)] mod tests { use arbitrary::Arbitrary; bitflags! { #[derive(Arbitrary)] struct Color: u32 { const RED = 0x1; const GREEN = 0x2; const BLUE = 0x4; } } #[test] fn test_arbitrary() { let mut unstructured = arbitrary::Unstructured::new(&[0_u8; 256]); let _color = Color::arbitrary(&mut unstructured); } }
Version data entries
29 entries across 29 versions & 1 rubygems