()
| 895 | |
| 896 | #[test] |
| 897 | fn select_u32() { |
| 898 | let a: u32 = 1; |
| 899 | let b: u32 = 2; |
| 900 | assert_eq!(Choice::TRUE.select_u32(a, b), b); |
| 901 | assert_eq!(Choice::FALSE.select_u32(a, b), a); |
| 902 | } |
| 903 | |
| 904 | #[test] |
| 905 | fn select_u64() { |
nothing calls this directly
no outgoing calls
no test coverage detected