()
| 175 | |
| 176 | #[test] |
| 177 | fn root_hash_changes() { |
| 178 | let mut account_storage = new_account_storage(); |
| 179 | let root_hash_1 = account_storage.root_hash().unwrap(); |
| 180 | let (_, _) = add_account(&mut account_storage); |
| 181 | let root_hash_2 = account_storage.root_hash().unwrap(); |
| 182 | |
| 183 | assert_ne!(root_hash_1, root_hash_2); |
| 184 | } |
| 185 | } |
nothing calls this directly
no test coverage detected