()
| 906 | |
| 907 | #[test] |
| 908 | fn test_options_clone() { |
| 909 | let opts = DetectOptions::new().with_prefix("test/"); |
| 910 | let cloned = opts.clone(); |
| 911 | |
| 912 | assert_eq!(opts, cloned); |
| 913 | } |
| 914 | |
| 915 | #[test] |
| 916 | fn test_options_debug() { |
nothing calls this directly
no test coverage detected