Xiaoyun Zhang e63fd17ed5
[.Net] use file-scope (#3997)
* use file-scope

* reformat
2024-10-30 10:05:58 -07:00

20 lines
335 B
C#

// Copyright (c) Microsoft Corporation. All rights reserved.
// GraphTests.cs
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);
}
}