YesSql.Tests.InMemoryTests.InMemoryTests C# (CSharp) Method

InMemoryTests() public method

public InMemoryTests ( ) : System
return System
        public InMemoryTests()
        {
            var configuration = new Configuration
            {
                ConnectionFactory = new DbConnectionFactory<SqlConnection>(ConnectionString),
                IsolationLevel = IsolationLevel.ReadUncommitted,
                DocumentStorageFactory = new InMemoryDocumentStorageFactory()
            };

            _store = new Store(configuration);

            CleanDatabase();
            CreateTables();
        }