Say I have the following:
public interface ISession { T Get(dynamic filter); } }
And I have the following code that I want to
Moq provided It.IsAny for that case
It.IsAny
sessionMock.Setup(x => x.Get(It.IsAny()).Returns(new User());
*dynamic is any object