mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2024-12-22 18:52:24 +00:00
20 lines
440 B
C#
20 lines
440 B
C#
|
using System;
|
|||
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|||
|
using OmniLinkBridge;
|
|||
|
using System.IO;
|
|||
|
using System.Reflection;
|
|||
|
|
|||
|
namespace OmniLinkBridgeTest
|
|||
|
{
|
|||
|
[TestClass]
|
|||
|
public class AssemblyTestHarness
|
|||
|
{
|
|||
|
[AssemblyInitialize]
|
|||
|
public static void InitializeAssembly(TestContext context)
|
|||
|
{
|
|||
|
Global.config_file = "OmniLinkBridge.ini";
|
|||
|
Settings.LoadSettings();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|