()
| 717 | |
| 718 | #[test] |
| 719 | fn test_set_model_info() { |
| 720 | let mut s = make_session(); |
| 721 | s.set_model_info("anthropic", "claude-sonnet-4-20250514"); |
| 722 | assert_eq!(s.agent_vendor, "anthropic"); |
| 723 | assert_eq!(s.model, "claude-sonnet-4-20250514"); |
| 724 | } |
| 725 | |
| 726 | // Transcript path |
| 727 |
nothing calls this directly
no test coverage detected