Document workflow edge test helpers

Agent-Logs-Url: https://github.com/microsoft/agent-framework/sessions/af831ee2-0a99-4427-9ffd-a3b5022c1b3b

Co-authored-by: lokitoth <6936551+lokitoth@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-05-13 19:13:09 +00:00
committed by GitHub
Unverified
parent 73d1946928
commit 9c839ea6eb
2 changed files with 10 additions and 0 deletions
@@ -447,6 +447,9 @@ public partial class WorkflowBuilderSmokeTests
Assert.Throws<ArgumentNullException>("executors", () => switchBuilder.WithDefault([target, null!]));
}
/// <summary>
/// Gets the only edge emitted by the specified workflow source.
/// </summary>
private static Edge GetSingleEdge(Workflow workflow, string sourceId)
=> workflow.Edges[sourceId].Should().ContainSingle().Subject;
}