mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
* #2708 add Add a judgment to the graph constructor * #2708 add Add a judgment to the graph constructor & added unit test * #2708 #2079 move GraphTests to AutoGen.Tests; delete AutoGen.Core.Tests project
This commit is contained in:
18
dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs
Normal file
18
dotnet/test/AutoGen.Tests/GroupChat/GraphTests.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
using Xunit;
|
||||
|
||||
namespace AutoGen.Tests
|
||||
{
|
||||
public class GraphTests
|
||||
{
|
||||
[Fact]
|
||||
public void GraphTest()
|
||||
{
|
||||
var graph1 = new Graph();
|
||||
Assert.NotNull(graph1);
|
||||
|
||||
var graph2 = new Graph(null);
|
||||
Assert.NotNull(graph2);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user