()
| 968 | |
| 969 | #[test] |
| 970 | fn test_stem_variants_ate_suffix() { |
| 971 | let symbols = vec!["authenticate".to_string()]; |
| 972 | let variants = generate_stem_variants(&symbols); |
| 973 | assert!(variants.contains(&"authentication".to_string())); |
| 974 | assert!(variants.contains(&"authenticator".to_string())); |
| 975 | } |
| 976 | |
| 977 | #[test] |
| 978 | fn test_stem_variants_tion_suffix() { |
nothing calls this directly
no test coverage detected