aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.UnitTesting
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2017-11-29 20:37:05 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2017-11-29 20:37:05 +0200
commitcfb92ea5e80b1af847829a76ab3c9ed7f52ae2c4 (patch)
tree10aae33b609f8adc654f00597fcd902faeee8fd9 /Software/Visual_Studio/Tango.UnitTesting
parent1348ceabdd5d93b78f7f0d9295a5b3424ae93962 (diff)
downloadTango-cfb92ea5e80b1af847829a76ab3c9ed7f52ae2c4.tar.gz
Tango-cfb92ea5e80b1af847829a76ab3c9ed7f52ae2c4.zip
Fixed an issue with boolean values on local DB sync.
Added support for SYNC_CONFIGURATION table on for local DB sync. Fixed an issue with multiple row updates on remote DB sync. Added warning for missing destination property on remote DB sync. Throw exception when no remote machine found on remote DB sync.
Diffstat (limited to 'Software/Visual_Studio/Tango.UnitTesting')
-rw-r--r--Software/Visual_Studio/Tango.UnitTesting/Synchronization_TST.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.UnitTesting/Synchronization_TST.cs b/Software/Visual_Studio/Tango.UnitTesting/Synchronization_TST.cs
index bf8360258..a5b29b413 100644
--- a/Software/Visual_Studio/Tango.UnitTesting/Synchronization_TST.cs
+++ b/Software/Visual_Studio/Tango.UnitTesting/Synchronization_TST.cs
@@ -17,6 +17,8 @@ namespace Tango.UnitTesting
[TestMethod]
public void Compare_Remote_And_Local()
{
+ var console = Helper.InitializeLogging(true);
+
using (var remoteDB = new remote.RemoteDB("LOCALHOST\\SQLEXPRESS", false))
{
using (var localDB = new local.LocalDB(Helper.GetSQLiteFilePath()))
@@ -33,6 +35,8 @@ namespace Tango.UnitTesting
localDB.SaveChanges();
}
}
+
+ console.WaitForConsoleExit().Wait();
}
[TestMethod]