Files
shape_library/TestProject1/UnitTest1.cs
2019-10-20 21:42:51 -06:00

18 lines
246 B
C#

using NUnit.Framework;
using Shapes;
namespace Tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}