()
| 745 | |
| 746 | #[test] |
| 747 | fn test_set_model_info() { |
| 748 | let mut s = make_session(); |
| 749 | s.set_model_info("anthropic", "claude-sonnet-4-20250514"); |
| 750 | assert_eq!(s.agent_vendor, "anthropic"); |
| 751 | assert_eq!(s.model, "claude-sonnet-4-20250514"); |
| 752 | } |
| 753 | |
| 754 | // Transcript path |
| 755 |
nothing calls this directly
no test coverage detected