()
| 682 | |
| 683 | #[test] |
| 684 | fn test_split() { |
| 685 | let target = str!(b"hello:world"); |
| 686 | let strs = target.split(b':'); |
| 687 | |
| 688 | sb_sb_compare(&mut strs.get(0).unwrap(), &mut str!(b"hello")); |
| 689 | sb_sb_compare(&mut strs.get(1).unwrap(), &mut str!(b"world")); |
| 690 | } |
| 691 | } |
nothing calls this directly
no test coverage detected