Galen.Ci.EntityFramework.Tests.TestUtils.AssemblyInit C# (CSharp) Method

AssemblyInit() private method

private AssemblyInit ( Microsoft.VisualStudio.TestTools.UnitTesting.TestContext context ) : void
context Microsoft.VisualStudio.TestTools.UnitTesting.TestContext
return void
		public static void AssemblyInit(TestContext context)
		{
			m_ExecutionPath=Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

			//Required to mitgate strange EF bug: http://entityframework.codeplex.com/workitem/1590
			var _ = System.Data.Entity.SqlServer.SqlProviderServices.Instance;
			Log.Logger=new LoggerConfiguration().WriteTo.Trace().WriteTo.Seq("http://localhost:5341").CreateLogger();
		}