(bv1: i32, bv2: i32)
| 734 | } |
| 735 | #[quickcheck_macros::quickcheck] |
| 736 | fn check_bitwise_or(bv1: i32, bv2: i32) -> TestResult { |
| 737 | init(); |
| 738 | let result = bitwise_or(bv1, bv2); |
| 739 | TestResult::passed() |
| 740 | } |
| 741 | #[quickcheck_macros::quickcheck] |
| 742 | fn check_bitwise_or_u32(bv1: u32, bv2: u32) -> TestResult { |
| 743 | init(); |
nothing calls this directly
no test coverage detected