()
| 151 | #[test] |
| 152 | #[should_panic(expected = "MMR is empty")] |
| 153 | fn test_mmr_native_fail_0() { |
| 154 | let mmr = MMRNative::new(); |
| 155 | let (_leaf, _mmr_proof) = mmr.generate_proof(0); |
| 156 | } |
| 157 | |
| 158 | #[test] |
| 159 | #[should_panic(expected = "Index out of bounds")] |
nothing calls this directly
no test coverage detected