// Copyright (c) Microsoft. All rights reserved. namespace Foundry.Hosting.IntegrationTests.Fixtures; /// /// Provisions a hosted agent that runs the test container in IT_SCENARIO=tool-calling-approval mode. /// The container declares an AIFunction tagged RequiresApproval=true so tests can exercise /// the human in the loop approval flow (request, grant, deny). /// public sealed class ToolCallingApprovalHostedAgentFixture : HostedAgentFixture { protected override string ScenarioName => "tool-calling-approval"; }