()
| 1505 | |
| 1506 | #[test] |
| 1507 | fn test_bitwise_unary_empty() { |
| 1508 | let arr = BooleanArray::from(Vec::<bool>::new()); |
| 1509 | let result = arr.bitwise_unary(|x| !x); |
| 1510 | assert_eq!(result.len(), 0); |
| 1511 | } |
| 1512 | |
| 1513 | #[test] |
| 1514 | fn test_bitwise_bin_op_empty() { |
nothing calls this directly
no test coverage detected