UnitTest1.cs 235 B

123456789101112131415
  1. using Xunit;
  2. using SORTER;
  3. namespace TestSorter
  4. {
  5. public class UnitTest1
  6. {
  7. [Fact]
  8. public void Test1()
  9. {
  10. int[] array = new int[] { 3, 2, 3 };
  11. Assert.Equal(1, 1);
  12. }
  13. }
  14. }