()
| 582 | |
| 583 | #[test] |
| 584 | fn test_clone() { |
| 585 | let opts = WorkflowOptions::new() |
| 586 | .with_prefix("test/") |
| 587 | .with_algorithm(Algorithm::Patience); |
| 588 | |
| 589 | let cloned = opts.clone(); |
| 590 | |
| 591 | assert_eq!(cloned.prefix(), "test/"); |
| 592 | assert_eq!(cloned.algorithm(), Algorithm::Patience); |
| 593 | } |
| 594 | |
| 595 | #[test] |
| 596 | fn test_debug() { |
nothing calls this directly
no test coverage detected