We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
var foo = A.Fake<IFoo>(x => x.Strict());
After you have configured your fake in this fashion you can configure any "allowed" calls as usual, for example:
A.CallTo(() => foo.Bar()).Returns("bar");