mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
9b9604ce18
Co-authored-by: Jacob Alber <jaalber@microsoft.com>
27 lines
788 B
C#
27 lines
788 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Collections.Generic;
|
|
using Microsoft.Extensions.AI;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.UnitTests;
|
|
|
|
public class AIAgentsAbstractionsExtensionsTests
|
|
{
|
|
[Fact]
|
|
public void CopyWithAssistantToUserForOtherParticipants_DoesNotMutateOriginalMessages()
|
|
{
|
|
ChatMessage original = new(ChatRole.Assistant, "from first agent")
|
|
{
|
|
AuthorName = "firstAgent"
|
|
};
|
|
|
|
List<ChatMessage> copied = new[] { original }
|
|
.CopyWithAssistantToUserForOtherParticipants("secondAgent");
|
|
|
|
Assert.Single(copied);
|
|
Assert.Equal(ChatRole.Assistant, original.Role);
|
|
Assert.Equal(ChatRole.User, copied[0].Role);
|
|
Assert.NotSame(original, copied[0]);
|
|
}
|
|
}
|