()
| 1296 | |
| 1297 | #[test] |
| 1298 | fn test_bitwise_unary_not() { |
| 1299 | let arr = BooleanArray::from(vec![true, false, true, false]); |
| 1300 | let result = arr.bitwise_unary(|x| !x); |
| 1301 | let expected = BooleanArray::from(vec![false, true, false, true]); |
| 1302 | assert_eq!(result, expected); |
| 1303 | } |
| 1304 | |
| 1305 | #[test] |
| 1306 | fn test_bitwise_unary_preserves_nulls() { |
nothing calls this directly
no test coverage detected