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.
17 lines
460 B
C#
17 lines
460 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;
|
|
}
|
|
}
|
|
}
|