()
| 9 | |
| 10 | #[test] |
| 11 | fn empty() { |
| 12 | let nothing: [u8; 0] = hex!(); |
| 13 | let empty_literals: [u8; 0] = hex!("" "" ""); |
| 14 | let expected: [u8; 0] = []; |
| 15 | assert_eq!(nothing, expected); |
| 16 | assert_eq!(empty_literals, expected); |
| 17 | } |
| 18 | |
| 19 | #[test] |
| 20 | fn upper_case() { |
nothing calls this directly
no outgoing calls
no test coverage detected