()
| 620 | |
| 621 | #[test] |
| 622 | fn test_print_reasoning_empty() { |
| 623 | let reasoning = TurnReasoning { |
| 624 | intent: "test".into(), |
| 625 | outcome: "done".into(), |
| 626 | learnings: transcript::Learnings::default(), |
| 627 | friction: vec![], |
| 628 | open_items: vec![], |
| 629 | }; |
| 630 | |
| 631 | print_reasoning(&reasoning); |
| 632 | } |
| 633 | |
| 634 | #[test] |
| 635 | fn test_print_reasoning_code_learning_no_line() { |
nothing calls this directly
no test coverage detected