Hello all,
I want to make a test case for a method which will return screen information based on certain paramerters e.g (screenName, module, context). But inside this method I have a scenario like :
object Screen;
byte acl = GetScreenACL(screen, module, contextCode, uow, out Screen);
GetScreenACL is a private static method of some class e.g abc.
Can any one help me, how should I mock GetScreenACL so that I can get both Screen and acl.
Thanks