(
session: &'a AgentSession,
event: &'a TurnEvent,
turn_number: u32,
prompt: &str,
)
| 19 | } |
| 20 | |
| 21 | fn options<'a>( |
| 22 | session: &'a AgentSession, |
| 23 | event: &'a TurnEvent, |
| 24 | turn_number: u32, |
| 25 | prompt: &str, |
| 26 | ) -> TurnRecordOptions<'a> { |
| 27 | TurnRecordOptions { |
| 28 | session, |
| 29 | event, |
| 30 | turn_number, |
| 31 | turn_duration_ms: 1000, |
| 32 | prompt: Some(prompt.to_string()), |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | /// A direct caller must be able to record a create turn followed by a modify turn. |
| 37 | #[test] |
no outgoing calls
no test coverage detected