#2708 add Add a judgment to the graph constructor (#2709)

* #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:
Jeffrey Su
2024-06-26 07:09:08 +08:00
committed by GitHub
parent 5e744f7fe4
commit 08726421fc
3 changed files with 29 additions and 4 deletions

View 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);
}
}
}