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 365 B

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