13 references to StrictEqual
Microsoft.CodeAnalysis.UnitTests (6)
InternalUtilities\JsonWriterTests.cs (6)
20Assert.StrictEqual(expected, WriteToString(value)); 33Assert.StrictEqual(expected, WriteToString(value)); 86Assert.StrictEqual($"\"{expected}\"", WriteToString(value)); 87Assert.StrictEqual($"\"{expected}_after\"", WriteToString($"{value}_after")); 88Assert.StrictEqual($"\"before_{expected}\"", WriteToString($"before_{value}")); 89Assert.StrictEqual($"\"before_{expected}_after\"", WriteToString($"before_{value}_after"));
Microsoft.DotNet.XUnitAssert.Tests (3)
EqualityAssertsTests.cs (3)
868 Assert.StrictEqual(42, 42); 874 var ex = Assert.Throws<EqualException>(() => Assert.StrictEqual(42, 2112)); 885 var ex = Assert.Throws<EqualException>(() => Assert.StrictEqual(expected, actual));
System.ServiceModel.Primitives.Tests (4)
Description\OperationBehaviorTest.cs (1)
120Assert.StrictEqual(obj.Members[i].Index, deserialized.Members[i].Index);
ServiceModel\ChannelFactoryTest.cs (2)
52Assert.StrictEqual<IRequestChannel>(channel, channel); 109Assert.StrictEqual<IRequestChannel>(channel, channel);
ServiceModel\DuplexChannelFactoryTest.cs (1)
242Assert.StrictEqual<IWcfDuplexService>(channel, channel);