()
| 879 | |
| 880 | #[test] |
| 881 | fn select_u8() { |
| 882 | let a: u8 = 1; |
| 883 | let b: u8 = 2; |
| 884 | assert_eq!(Choice::TRUE.select_u8(a, b), b); |
| 885 | assert_eq!(Choice::FALSE.select_u8(a, b), a); |
| 886 | } |
| 887 | |
| 888 | #[test] |
| 889 | fn select_u16() { |
nothing calls this directly
no outgoing calls
no test coverage detected