()
| 1631 | const TEST_SLICE2: &[u8] = TEST_STR2.as_bytes(); |
| 1632 | |
| 1633 | fn test_strings() -> [String; 2] { |
| 1634 | [TEST_STR.to_string(), TEST_STR2.to_string()] |
| 1635 | } |
| 1636 | |
| 1637 | fn test_slices() -> [Vec<u8>; 2] { |
| 1638 | [TEST_SLICE.to_owned(), TEST_SLICE2.to_owned()] |
no test coverage detected
searching dependent graphs…