public void TestCleanup() { dbClient.ClearTables(); dbClient.Close(); TransactionScope.Dispose(); }
public void TestSetup() { dbClient = new DbWrapper("notes.db"); dbClient.ClearTables(); TransactionScope = new TransactionScope(TransactionScopeOption.RequiresNew); }