15 lines
185 B
C#
15 lines
185 B
C#
using NUnit.Framework;
|
|
|
|
namespace InventoryTraker.Web.Tests
|
|
{
|
|
[SetUpFixture]
|
|
public class Setup
|
|
{
|
|
[OneTimeSetUp]
|
|
public void S()
|
|
{
|
|
AutoMapperConfig.Configure();
|
|
}
|
|
}
|
|
}
|