Specify that an intercepted call should be ignored without executing any logic.
Namespace: TypeMock.ArrangeActAssert.Fluent
Assembly: Typemock.ArrangeActAssert (in Typemock.ArrangeActAssert.dll) Version: 9.1.4.0 (9.1.4.0)
Syntax
Remarks
Examples
[TestMethod] [Isolated] public void FakeAnInstance_StubIncrementMethod() { RealLogger fake = Isolate.Fake.Instance<RealLogger>(); // Increment call will be ignored (stubbed) Isolate.WhenCalled(() => fake.Increment()).IgnoreCall(); // Make sure Count is reset fake.Count = 0; // This call is faked - count should not increment fake.Increment(); Assert.AreEqual(0, fake.Count); }
See Also