mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-16 13:30:55 +00:00
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|