Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save VelizarHristov/64c2afa1dc11ae97878038a092b4e8c3 to your computer and use it in GitHub Desktop.
Save VelizarHristov/64c2afa1dc11ae97878038a092b4e8c3 to your computer and use it in GitHub Desktop.
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