()
| 1025 | |
| 1026 | #[test] |
| 1027 | fn test_writer_conflict_next() { |
| 1028 | let buf: Vec<u8> = Vec::new(); |
| 1029 | let mut writer = Writer::new(buf); |
| 1030 | |
| 1031 | writer.conflict_next(1, None).unwrap(); |
| 1032 | |
| 1033 | let output = String::from_utf8(writer.into_inner()).unwrap(); |
| 1034 | assert!(output.contains(markers::SEPARATOR)); |
| 1035 | } |
| 1036 | |
| 1037 | #[test] |
| 1038 | fn test_writer_end_conflict() { |
nothing calls this directly
no test coverage detected