This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / knot2 / crates / knot-cobs / tests / fuzz_smoke.rs
427 B 15 lines
1use proptest::prelude::*; 2 3proptest! { 4 #![proptest_config(ProptestConfig::with_cases(1024))] 5 6 #[test] 7 fn the_cob_change_decoder_never_panics(data in proptest::collection::vec(any::<u8>(), 0..4096)) { 8 knot_cobs::fuzz::change_decode(&data); 9 } 10 11 #[test] 12 fn the_cob_ref_parser_never_panics(data in proptest::collection::vec(any::<u8>(), 0..4096)) { 13 knot_cobs::fuzz::ref_parse(&data); 14 } 15}