Skip to content

Commit

Permalink
remove redundant and stale comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bassmang committed Jan 30, 2025
1 parent da8f998 commit 1364d8e
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions dotnet/test/Microsoft.AutoGen.Core.Tests/AgentTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace Microsoft.AutoGen.Core.Tests;

//[Collection(ClusterFixtureCollection.Name)]
public class AgentTests()
{
[Fact]
Expand Down Expand Up @@ -164,26 +163,6 @@ await runtime.RegisterAgentFactoryAsync("MyAgent", (id, runtime) =>
// );
// }

// /// <summary>
// /// validate that the agent is initialized correctly with implicit subs
// /// </summary>
// /// <returns>void</returns>
// [Fact]
// public async Task Agent_ShouldInitializeCorrectly()
// {
// var fixture = new InMemoryAgentRuntimeFixture();
// var (runtime, agent) = fixture.Start();
// Assert.Equal(nameof(AgentRuntime), runtime.GetType().Name);
// var subscriptions = await agent.GetSubscriptionsAsync();
// Assert.Equal(2, subscriptions.Count);
// fixture.Stop();
// }
// /// <summary>
// /// Test AddSubscriptionAsync method
// /// </summary>
// /// <returns>void</returns>
// ///

// /// <summary>
// /// Test StoreAsync and ReadAsync methods
// /// </summary>
Expand Down Expand Up @@ -271,10 +250,4 @@ await runtime.RegisterAgentFactoryAsync("MyAgent", (id, runtime) =>

// TestAgent.ReceivedMessages[nameof(DelegateMessageToTestAgentAsync)].Should().NotBeNull();
// }

// [CollectionDefinition(Name)]
// public sealed class ClusterFixtureCollection : ICollectionFixture<InMemoryAgentRuntimeFixture>
// {
// public const string Name = nameof(ClusterFixtureCollection);
// }
}

0 comments on commit 1364d8e

Please sign in to comment.