Files
InventoryTracker/InventoryTraker.Web.Tests/App_Start/Setup.cs
T
2016-09-22 14:14:12 -04:00

17 lines
313 B
C#

using Heroic.AutoMapper;
using InventoryTraker.Web.Core;
using NUnit.Framework;
namespace InventoryTraker.Web.Tests
{
[SetUpFixture]
public class Setup
{
[OneTimeSetUp]
public void S()
{
HeroicAutoMapperConfigurator.LoadMapsFromAssemblyContainingTypeAndReferencedAssemblies<Inventory>();
}
}
}