()
| 262 | |
| 263 | #[test] |
| 264 | fn build_all_args_test() { |
| 265 | let ffmpeg_args = get_two_input_args(); |
| 266 | |
| 267 | assert_eq!(ffmpeg_args.first_input, INPUT_ONE); |
| 268 | assert_eq!(ffmpeg_args.second_input, INPUT_TWO); |
| 269 | assert_eq!(ffmpeg_args.bitrate, BITRATE); |
| 270 | assert_eq!(ffmpeg_args.encoder, ENCODER); |
| 271 | assert_eq!(ffmpeg_args.encoder_args, ENCODER_ARGS); |
| 272 | } |
| 273 | |
| 274 | #[test] |
| 275 | fn build_only_one_input_test() { |
nothing calls this directly
no test coverage detected