mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-25 18:01:03 +00:00
22 lines
590 B
C#
22 lines
590 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// AgentMetaDataTests.cs
|
|
using FluentAssertions;
|
|
using Microsoft.AutoGen.Contracts;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.AutoGen.Core.Tests;
|
|
|
|
[Trait("Category", "UnitV2")]
|
|
public class AgentMetadataTests()
|
|
{
|
|
[Fact]
|
|
public void AgentMetadataShouldInitializeCorrectlyTest()
|
|
{
|
|
var metadata = new AgentMetadata("TestType", "TestKey", "TestDescription");
|
|
|
|
metadata.Type.Should().Be("TestType");
|
|
metadata.Key.Should().Be("TestKey");
|
|
metadata.Description.Should().Be("TestDescription");
|
|
}
|
|
}
|