()
| 1316 | |
| 1317 | #[test] |
| 1318 | fn test_bitwise_unary_mut_unshared() { |
| 1319 | let arr = BooleanArray::from(vec![true, false, true, false]); |
| 1320 | let info = PointerInfo::new(&arr); |
| 1321 | let result = arr.bitwise_unary_mut(|x| !x).unwrap(); |
| 1322 | let expected = BooleanArray::from(vec![false, true, false, true]); |
| 1323 | assert_eq!(result, expected); |
| 1324 | info.assert_same(&result); |
| 1325 | } |
| 1326 | |
| 1327 | #[test] |
| 1328 | fn test_bitwise_unary_mut_shared() { |
nothing calls this directly
no test coverage detected