17 lines
313 B
C#
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>();
|
|
}
|
|
}
|
|
}
|