()
| 1101 | |
| 1102 | #[test] |
| 1103 | fn test_iter_bytes_empty() { |
| 1104 | let kargs = Cmdline::from(b""); |
| 1105 | let params: Vec<_> = kargs.iter_bytes().collect(); |
| 1106 | |
| 1107 | assert_eq!(params.len(), 0); |
| 1108 | } |
| 1109 | |
| 1110 | #[test] |
| 1111 | fn test_cmdline_eq() { |
nothing calls this directly
no test coverage detected