mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-15 22:44:58 -05: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
19 lines
306 B
C#
19 lines
306 B
C#
|
|
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);
|
|
}
|
|
}
|
|
}
|