I have a method as following :
public bool Authorized(Permission requiredPermission, WindowsIdentity windowsIdentity)
{
return true;
}
When I generate fakes assembly for the assembly containing above method , the Shim class does not have the corresponding Func for this method.
But if I generate the fakes assembly for VS2013 update 4 or earlier , it works (i.e have the corresponding Func<>
in Shim class.
Why is this so ?