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