Files
InventoryTraker-Box/InventoryTraker.Web.Tests/App_Start/Setup.cs
T
2016-09-24 00:06:34 -04:00

15 lines
185 B
C#

using NUnit.Framework;
namespace InventoryTraker.Web.Tests
{
[SetUpFixture]
public class Setup
{
[OneTimeSetUp]
public void S()
{
AutoMapperConfig.Configure();
}
}
}