()
| 911 | |
| 912 | #[test] |
| 913 | fn select_u128() { |
| 914 | let a: u128 = 1; |
| 915 | let b: u128 = 2; |
| 916 | assert_eq!(Choice::TRUE.select_u128(a, b), b); |
| 917 | assert_eq!(Choice::FALSE.select_u128(a, b), a); |
| 918 | } |
| 919 | |
| 920 | #[test] |
| 921 | fn to_bool() { |
nothing calls this directly
no outgoing calls
no test coverage detected