Added Rectangle

This commit is contained in:
Brady
2019-10-20 21:42:51 -06:00
parent 62c9007691
commit 268c742f6c
18 changed files with 583 additions and 9 deletions

18
TestProject1/UnitTest1.cs Normal file
View File

@@ -0,0 +1,18 @@
using NUnit.Framework;
using Shapes;
namespace Tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}