Implemented interface member:
6 writes to
Microsoft.Build.Engine.UnitTests (6)
Collections\CopyOnWritePropertyDictionary_Tests.cs (6)
53dic["a"] = a; 58dic["b"] = b; 64Assert.ThrowsAny<Exception>(() => dic["a"] = null!); 67Assert.ThrowsAny<Exception>(() => dic["a"] = b); 81dic["a"] = a; 86dic["b"] = b;
6 references to
Microsoft.Build.Engine.UnitTests (6)
Collections\CopyOnWritePropertyDictionary_Tests.cs (6)
50dic["a"].ShouldBeNull(); 51dic["b"].ShouldBeNull(); 55dic["a"].ShouldBeSameAs(a); 56dic["b"].ShouldBeNull(); 60dic["a"].ShouldBeSameAs(a); 61dic["b"].ShouldBeSameAs(b);