Localization check-in for September update (#464)

* Localization check-in for September update

* Fix format of test check that was failing so that if it fails in lab we'll get useful error message
This commit is contained in:
Monasr
2017-09-20 16:15:55 -07:00
committed by Kevin Cunnane
parent 01d7cde0e3
commit c90fd3410d
11 changed files with 1865 additions and 178 deletions

View File

@@ -128,8 +128,8 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.LanguageServer
this.bindingQueue.StopQueueProcessor(15000);
Assert.True(this.bindCallCount == 1);
Assert.True(this.timeoutCallCount == 0);
Assert.Equal(1, this.bindCallCount);
Assert.Equal(0, this.timeoutCallCount);
Assert.False(this.isCancelationRequested);
}
@@ -153,8 +153,8 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.LanguageServer
this.bindingQueue.StopQueueProcessor(15000);
Assert.True(this.bindCallCount == 100);
Assert.True(this.timeoutCallCount == 0);
Assert.Equal(100, this.bindCallCount);
Assert.Equal(0, this.timeoutCallCount);
Assert.False(this.isCancelationRequested);
}
@@ -178,8 +178,8 @@ namespace Microsoft.SqlTools.ServiceLayer.UnitTests.LanguageServer
this.bindingQueue.StopQueueProcessor(15000);
Assert.True(this.bindCallCount == 0);
Assert.True(this.timeoutCallCount == 1);
Assert.Equal(0, this.bindCallCount);
Assert.Equal(1, this.timeoutCallCount);
Assert.True(this.isCancelationRequested);
}
}