Files
shape_library/UnitTests/ShapeFactoryTests.cs
2019-10-25 03:16:17 -06:00

18 lines
245 B
C#

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