()
| 1176 | |
| 1177 | #[test] |
| 1178 | fn into_code_from_array() { |
| 1179 | let pred = convert_code(&[3, 10] as &[i32]); |
| 1180 | assert!(pred.eval(&10)); |
| 1181 | } |
| 1182 | |
| 1183 | // Since IntoOutputPredicate exists solely for conversion, test it under that scenario to ensure |
| 1184 | // it works as expected. |
nothing calls this directly
no test coverage detected