()
| 887 | |
| 888 | #[test] |
| 889 | fn select_u16() { |
| 890 | let a: u16 = 1; |
| 891 | let b: u16 = 2; |
| 892 | assert_eq!(Choice::TRUE.select_u16(a, b), b); |
| 893 | assert_eq!(Choice::FALSE.select_u16(a, b), a); |
| 894 | } |
| 895 | |
| 896 | #[test] |
| 897 | fn select_u32() { |
nothing calls this directly
no outgoing calls
no test coverage detected