()
| 646 | |
| 647 | #[test] |
| 648 | fn ct_select() { |
| 649 | let a = Choice::FALSE; |
| 650 | let b = Choice::TRUE; |
| 651 | assert_eq!(a.ct_select(&b, Choice::FALSE).to_bool(), a.to_bool()); |
| 652 | assert_eq!(a.ct_select(&b, Choice::TRUE).to_bool(), b.to_bool()); |
| 653 | } |
| 654 | |
| 655 | #[test] |
| 656 | fn and() { |
no outgoing calls
no test coverage detected