// Copyright (c) Microsoft. All rights reserved.
using System;
namespace Microsoft.Extensions.AI.Agents.Abstractions.UnitTests;
///
/// Unit tests for the class.
///
public class AgentRunOptionsTests
{
[Fact]
public void CloningConstructorCopiesProperties()
{
// Arrange
var options = new AgentRunOptions();
// Act
var clone = new AgentRunOptions(options);
}
[Fact]
public void CloningConstructorThrowsIfNull()
{
// Act & Assert
Assert.Throws(() => new AgentRunOptions(null!));
}
}