(a: &[T], b: &[T])
| 917 | } |
| 918 | |
| 919 | fn compare_arrays<T: PartialEq>(a: &[T], b: &[T]) -> bool { |
| 920 | a.len() == b.len() |
| 921 | && a.iter().all(|item| b.contains(item)) |
| 922 | && b.iter().all(|item| a.contains(item)) |
| 923 | } |
| 924 | |
| 925 | fn assert_initial_accounts( |
| 926 | env: &PocketIc, |
no test coverage detected