()
| 342 | |
| 343 | #[test] |
| 344 | fn test_taint_tracking() { |
| 345 | let provider = DefaultSecurityProvider::new(); |
| 346 | provider.taint_input("My SSN is 123-45-6789"); |
| 347 | let tainted = provider.tainted_data.read().unwrap(); |
| 348 | assert_eq!(tainted.len(), 1); |
| 349 | } |
| 350 | |
| 351 | #[test] |
| 352 | fn test_wipe() { |
nothing calls this directly
no test coverage detected