Adding prelim unit test folder to project

This commit is contained in:
Andrew Song 2020-12-13 16:28:39 -06:00
parent af5993e3b2
commit 595478feb5
5 changed files with 138 additions and 0 deletions

15
API.UnitTests/Tests.cs Normal file
View file

@ -0,0 +1,15 @@
using System;
using Xunit;
namespace API.UnitTest
{
public class Tests
{
[Fact]
public void Test1()
{
Assert.True(true);
}
}
}