A read-only property, used to fake a new object.
Namespace: TypeMock.ArrangeActAssert
Assembly: Typemock.ArrangeActAssert (in Typemock.ArrangeActAssert.dll) Version: 9.4.1.0 (9.4.1.0)
Syntax
Return Value
Type: IFakerAn IFaker interface reference.
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