()
| 684 | |
| 685 | #[test] |
| 686 | fn test_change_cmd_clone() { |
| 687 | let cmd = ChangeCmd::new() |
| 688 | .with_identifier("ABC") |
| 689 | .with_format(ChangeFormat::Json); |
| 690 | let cloned = cmd.clone(); |
| 691 | |
| 692 | assert_eq!(cmd.identifier, cloned.identifier); |
| 693 | assert_eq!(cmd.format, cloned.format); |
| 694 | } |
| 695 | |
| 696 | #[test] |
| 697 | fn test_change_identifier_clone() { |
nothing calls this directly
no test coverage detected