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

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. }