1 write to _failures
Microsoft.VisualStudio.LanguageServices.Test.Utilities2 (1)
PropertyChangedTestMonitor.vb (1)
20
_failures
= New List(Of String)
5 references to _failures
Microsoft.VisualStudio.LanguageServices.Test.Utilities2 (5)
PropertyChangedTestMonitor.vb (5)
40
_failures
.Add(String.Format("Property '{0}' was updated more times than expected.", e.PropertyName))
43
_failures
.Add(String.Format("Property '{0}' was unexpectedly updated.", e.PropertyName))
49
_failures
.Add(String.Format("Property '{0}' was expected to be updated {1} more time(s) than it was", failureCase.Key, failureCase.Value))
52
If
_failures
.Any() Then
53
Assert.False(True, String.Format("The following INotifyPropertyChanged expectations were not met: {0}", Environment.NewLine + String.Join(Environment.NewLine,
_failures
)))