How to assert that no calls to an object have been made using FakeItEasy?
I tried:
A.CallTo(() => _myObj).MustNotHaveHappened();
That does not work though, it throws the following exception:
System.ArgumentException : The specified expression is not a method call or property getter.
How to?