您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UnitTest1.cs 292B

123456789101112131415
  1. using Xunit;
  2. namespace Luticate2.Mvc.Auth.Tests
  3. {
  4. public class UnitTest1
  5. {
  6. [Fact]
  7. public void Test1()
  8. {
  9. string expected = "testValue 0";
  10. string actual = Class1.Method1("0");
  11. Assert.Equal(expected, actual);
  12. }
  13. }
  14. }