()
| 715 | |
| 716 | #[test] |
| 717 | fn test_change_cmd_clone() { |
| 718 | let cmd = ChangeCmd::new() |
| 719 | .with_identifier("ABC") |
| 720 | .with_format(ChangeFormat::Json); |
| 721 | let cloned = cmd.clone(); |
| 722 | |
| 723 | assert_eq!(cmd.identifier, cloned.identifier); |
| 724 | assert_eq!(cmd.format, cloned.format); |
| 725 | } |
| 726 | |
| 727 | #[test] |
| 728 | fn test_change_identifier_clone() { |
nothing calls this directly
no test coverage detected