()
| 871 | |
| 872 | #[test] |
| 873 | fn select_i64() { |
| 874 | let a: i64 = 1; |
| 875 | let b: i64 = 2; |
| 876 | assert_eq!(Choice::TRUE.select_i64(a, b), b); |
| 877 | assert_eq!(Choice::FALSE.select_i64(a, b), a); |
| 878 | } |
| 879 | |
| 880 | #[test] |
| 881 | fn select_u8() { |
nothing calls this directly
no outgoing calls
no test coverage detected