Framework Setup

This commit is contained in:
2020-04-19 21:56:56 -06:00
parent 3d4a0515e5
commit 1acf94c900
220 changed files with 809047 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using NUnit.Framework;
namespace FinalProject.UnitTests
{
[TestFixture]
public class Tests
{
[Test]
public void Test1()
{
Assert.True(true);
}
}
}