mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
92925a8bc7
* Draft * Nullable init * Complete * Consistency * Test fix * Typo * Comment * Updated * Fix identifier * Test fix * Comment typo * Better naming * Comment * Tweak comment
23 lines
700 B
C#
23 lines
700 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Text.Json;
|
|
using Microsoft.Extensions.AI;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests;
|
|
|
|
/// <summary>
|
|
/// Base class for event tests.
|
|
/// </summary>
|
|
public abstract class EventTest(ITestOutputHelper output) : WorkflowTest(output)
|
|
{
|
|
protected static TEvent VerifyEventSerialization<TEvent>(TEvent source)
|
|
{
|
|
string? text = JsonSerializer.Serialize(source, AIJsonUtilities.DefaultOptions);
|
|
Assert.NotNull(text);
|
|
TEvent? copy = JsonSerializer.Deserialize<TEvent>(text, AIJsonUtilities.DefaultOptions);
|
|
Assert.NotNull(copy);
|
|
return copy;
|
|
}
|
|
}
|