10 references to NotStrictEqual
Microsoft.DotNet.XUnitAssert.Tests (4)
EqualityAssertsTests.cs (4)
4275 var ex = Record.Exception(() => Assert.NotStrictEqual("actual", "actual")); 4289 Assert.NotStrictEqual("bob", "jim"); 4295 Assert.NotStrictEqual(new EnumerableClass("ploeh"), new EnumerableClass("fnaah")); 4301 var ex = Record.Exception(() => 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);