()
| 382 | |
| 383 | #[test] |
| 384 | fn test_no_false_positives() { |
| 385 | let provider = DefaultSecurityProvider::new(); |
| 386 | let text = "This is a normal sentence without sensitive data."; |
| 387 | let matches = provider.detect_sensitive(text); |
| 388 | assert_eq!(matches.len(), 0); |
| 389 | } |
| 390 | } |
nothing calls this directly
no test coverage detected