()
| 158 | #[test] |
| 159 | #[should_panic(expected = "Index out of bounds")] |
| 160 | fn test_mmr_native_fail_1() { |
| 161 | let mut mmr = MMRNative::new(); |
| 162 | mmr.append([0; 32]); |
| 163 | let (_leaf, _mmr_proof) = mmr.generate_proof(1); |
| 164 | } |
| 165 | |
| 166 | #[test] |
| 167 | fn test_mmr_native() { |
nothing calls this directly
no test coverage detected