public void SetUp()
 {
     _dbFileName = Path.GetTempFileName();
     File.Delete(_dbFileName); // delete the file because we don't actually want it there, we want to simulate a DB creation
     _config = new SQLiteSessionSourceConfiguration(_dbFileName);
 }
 public void SetUp()
 {
     _dbFileName = Path.GetTempFileName();
     File.Delete(_dbFileName); // delete the file because we don't actually want it there, we want to simulate a DB creation
     _config = new SQLiteSessionSourceConfiguration(_dbFileName);
 }