()
| 662 | |
| 663 | #[test] |
| 664 | fn or() { |
| 665 | assert_eq!((Choice::FALSE | Choice::FALSE).to_u8(), 0); |
| 666 | assert_eq!((Choice::TRUE | Choice::FALSE).to_u8(), 1); |
| 667 | assert_eq!((Choice::FALSE | Choice::TRUE).to_u8(), 1); |
| 668 | assert_eq!((Choice::TRUE | Choice::TRUE).to_u8(), 1); |
| 669 | } |
| 670 | |
| 671 | #[test] |
| 672 | fn xor() { |
nothing calls this directly
no outgoing calls
no test coverage detected