()
| 654 | |
| 655 | #[test] |
| 656 | fn and() { |
| 657 | assert_eq!((Choice::FALSE & Choice::FALSE).to_u8(), 0); |
| 658 | assert_eq!((Choice::TRUE & Choice::FALSE).to_u8(), 0); |
| 659 | assert_eq!((Choice::FALSE & Choice::TRUE).to_u8(), 0); |
| 660 | assert_eq!((Choice::TRUE & Choice::TRUE).to_u8(), 1); |
| 661 | } |
| 662 | |
| 663 | #[test] |
| 664 | fn or() { |
nothing calls this directly
no outgoing calls
no test coverage detected