You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

GraphTests.cs 335 B

12345678910111213141516171819
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // GraphTests.cs
  3. using Xunit;
  4. namespace AutoGen.Tests;
  5. public class GraphTests
  6. {
  7. [Fact]
  8. public void GraphTest()
  9. {
  10. var graph1 = new Graph();
  11. Assert.NotNull(graph1);
  12. var graph2 = new Graph(null);
  13. Assert.NotNull(graph2);
  14. }
  15. }