mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-28 03:13:27 +00:00
21 lines
560 B
C#
21 lines
560 B
C#
![]() |
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// AgentMetaDataTests.cs
|
||
|
using FluentAssertions;
|
||
|
using Microsoft.AutoGen.Contracts;
|
||
|
using Xunit;
|
||
|
|
||
|
namespace Microsoft.AutoGen.Core.Tests;
|
||
|
|
||
|
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");
|
||
|
}
|
||
|
}
|