You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EntityFrameworkCore.Jet/test/System.Data.Jet.Test/AssemblyInitialization.cs

17 lines
463 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace System.Data.Jet.Test
{
[TestClass]
public class AssemblyInitialization
{
[AssemblyInitialize]
public static void AssemblyInitialize(TestContext testContext)
{
// This is the only reason why we include the Provider
// JetConfiguration.ShowSqlStatements = true;
JetConfiguration.UseConnectionPooling = false;
}
}
}