(id: &str, summary: &str)
| 23 | } |
| 24 | |
| 25 | fn make_commitment(id: &str, summary: &str) -> ProvenanceNode { |
| 26 | ProvenanceNode { |
| 27 | id: id.into(), |
| 28 | kind: ProvenanceNodeKind::Commitment, |
| 29 | timestamp: 2000, |
| 30 | summary: summary.into(), |
| 31 | detail: None, |
| 32 | change_hash: None, |
| 33 | tool_name: Some("edit".into()), |
| 34 | tool_call_id: Some("call-1".into()), |
| 35 | duration_ms: Some(150), |
| 36 | classified: false, |
| 37 | confidence: None, |
| 38 | consolidated_from: Vec::new(), |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | fn make_exploration(id: &str, summary: &str) -> ProvenanceNode { |
| 43 | ProvenanceNode { |
no outgoing calls
no test coverage detected