2024-10-02 11:42:27 -07:00
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
2024-07-15 12:33:10 -07:00
|
|
|
// GraphTests.cs
|
|
|
|
|
2024-06-26 07:09:08 +08:00
|
|
|
using Xunit;
|
|
|
|
|
2024-10-30 10:05:58 -07:00
|
|
|
namespace AutoGen.Tests;
|
|
|
|
|
2025-02-03 11:49:08 -05:00
|
|
|
[Trait("Category", "UnitV1")]
|
2024-10-30 10:05:58 -07:00
|
|
|
public class GraphTests
|
2024-06-26 07:09:08 +08:00
|
|
|
{
|
2024-10-30 10:05:58 -07:00
|
|
|
[Fact]
|
|
|
|
public void GraphTest()
|
2024-06-26 07:09:08 +08:00
|
|
|
{
|
2024-10-30 10:05:58 -07:00
|
|
|
var graph1 = new Graph();
|
|
|
|
Assert.NotNull(graph1);
|
2024-06-26 07:09:08 +08:00
|
|
|
|
2024-10-30 10:05:58 -07:00
|
|
|
var graph2 = new Graph(null);
|
|
|
|
Assert.NotNull(graph2);
|
2024-06-26 07:09:08 +08:00
|
|
|
}
|
|
|
|
}
|