()
| 285 | |
| 286 | #[test] |
| 287 | fn test_estimate_tokens_code() { |
| 288 | let code = "fn main() {\n println!(\"Hello, world!\");\n}"; |
| 289 | let tokens = estimate_tokens(code); |
| 290 | assert!(tokens > 5 && tokens < 20); |
| 291 | } |
| 292 | |
| 293 | // -- prune_tool_outputs tests -- |
| 294 |
nothing calls this directly
no test coverage detected