()
| 2337 | |
| 2338 | #[test] |
| 2339 | fn test_primitive_array_creation() { |
| 2340 | let array1: Int8Array = [10_i8, 11, 12, 13, 14].into_iter().collect(); |
| 2341 | let array2: Int8Array = [10_i8, 11, 12, 13, 14].into_iter().map(Some).collect(); |
| 2342 | |
| 2343 | assert_eq!(array1, array2); |
| 2344 | } |
| 2345 | |
| 2346 | #[test] |
| 2347 | #[should_panic( |