예제 #1
0
 public TestDbInMemory()
     : base(
         new IntHashConvertor(), false,
         new TestUserCommandCreator(),
         new TestMetaDataCommandCreator(), TestDbHelper.NewInstance
         )
 {
     _impl = TestDbHelper.Instance;
 }
예제 #2
0
 public TestDbInMemory(string tableName, IHashCalculater hashCalculater)
     : base(
         hashCalculater, true,
         new TestUserCommandCreator(tableName),
         new TestMetaDataCommandCreator(), TestDbHelper.NewInstance
         )
 {
     _impl = TestDbHelper.Instance;
 }
예제 #3
0
 public static void SetData(TestDbImplModule impl)
 {
     _impl = impl;
 }