after lot of searches, I just can't find a way to use shim to test a private method.
here is my class:
public class MyClass()
{
private void AddWithRefPrivate(int x, int y, ref int result)
{
result = x + y;
}
}
how can I test the AddWithRefPrivate
method using shims?