()
| 885 | |
| 886 | #[test] |
| 887 | fn unwrap_or_default() { |
| 888 | assert_eq!(NONE.unwrap_or_default(), Default::default()); |
| 889 | assert_eq!(SOME.unwrap_or_default(), VALUE); |
| 890 | } |
| 891 | |
| 892 | #[test] |
| 893 | fn xor() { |
nothing calls this directly
no outgoing calls
no test coverage detected