Created
April 29, 2020 22:01
-
-
Save VelizarHristov/64c2afa1dc11ae97878038a092b4e8c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Xunit; | |
namespace LaserEdgeTest | |
{ | |
public class UnitTest1 | |
{ | |
[Fact] | |
public void Test1() | |
{ | |
Assert.Equal(4, 4); | |
} | |
[Fact] | |
public void Test2() | |
{ | |
Assert.Equal(4, 5); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment