1 write to _expectationCountMap
Microsoft.VisualStudio.LanguageServices.Test.Utilities2 (1)
PropertyChangedTestMonitor.vb (1)
21
_expectationCountMap
= New Dictionary(Of String, Integer)
7 references to _expectationCountMap
Microsoft.VisualStudio.LanguageServices.Test.Utilities2 (7)
PropertyChangedTestMonitor.vb (7)
29
If
_expectationCountMap
.ContainsKey(propertyName) Then
30
_expectationCountMap
(propertyName) += count
32
_expectationCountMap
(propertyName) = count
37
If
_expectationCountMap
.ContainsKey(e.PropertyName) Then
38
_expectationCountMap
(e.PropertyName) -= 1
39
If
_expectationCountMap
(e.PropertyName) < 0 AndAlso strict Then
48
For Each failureCase In
_expectationCountMap
.Where(Function(e) e.Value > 0)