I am unit testing a Post method that in its implementation uses a
Microsoft.AspNet.Identity.Owin.SignInManager
because SignInManager inherit from a class and not an interface I cannot use NSubstitute to mock the SignInManager object. Therefore I cannot use the ReturnForAnyArgs method to get it to return a SignInStatus of say Success.
Is there any way of returning for any arguments without using NSubstitute?