25 lines
472 B
C#
25 lines
472 B
C#
// LeetCode 166 單元測試(xUnit)
|
||
|
||
using Xunit;
|
||
|
||
public class SolutionTests {
|
||
private readonly Solution _s = new Solution();
|
||
|
||
[Fact]
|
||
public void Example1() {
|
||
// TODO: Arrange
|
||
// var input = new int[] { };
|
||
// var expected = 0;
|
||
// Act
|
||
// var got = _s.Solve(input);
|
||
// Assert.Equal(expected, got);
|
||
Assert.True(true);
|
||
}
|
||
|
||
[Fact]
|
||
public void EdgeCases() {
|
||
Assert.True(true);
|
||
}
|
||
}
|
||
|