9 references to NotStrictEqual
Microsoft.DotNet.XUnitAssert.Tests (3)
EqualityAssertsTests.cs (3)
1059 Assert.NotStrictEqual("bob", "jim"); 1065 var ex = Record.Exception(() => Assert.NotStrictEqual("actual", "actual")); 1079 var ex = Assert.Throws<NotEqualException>(() => Assert.NotStrictEqual(new DerivedClass(), new BaseClass()));
System.ServiceModel.Primitives.Tests (6)
ServiceModel\ChannelFactoryTest.cs (4)
55Assert.NotStrictEqual<IRequestChannel>(channel, channel2); 58Assert.NotStrictEqual<object>("other", channel); 112Assert.NotStrictEqual<IRequestChannel>(channel, channel2); 115Assert.NotStrictEqual<object>("other", channel);
ServiceModel\DuplexChannelFactoryTest.cs (2)
245Assert.NotStrictEqual<IWcfDuplexService>(channel, channel2); 248Assert.NotStrictEqual<object>("other", channel);