()
| 816 | |
| 817 | #[test] |
| 818 | fn test_options_algorithm() { |
| 819 | let opts = DetectOptions::new().with_algorithm(Algorithm::Patience); |
| 820 | |
| 821 | assert_eq!(opts.algorithm, Algorithm::Patience); |
| 822 | } |
| 823 | |
| 824 | #[test] |
| 825 | fn test_options_check_mtime() { |
nothing calls this directly
no test coverage detected