()
| 59 | |
| 60 | #[test] |
| 61 | fn test_options_algorithm() { |
| 62 | let opts = RecordOptions::new().with_algorithm(Algorithm::Patience); |
| 63 | assert_eq!(opts.algorithm(), Algorithm::Patience); |
| 64 | } |
| 65 | |
| 66 | #[test] |
| 67 | fn test_options_default_encoding() { |
nothing calls this directly
no test coverage detected