经过大量搜索,我只是找不到使用 shim 测试私有方法的方法。
这是我的课:
public class MyClass()
{
private void AddWithRefPrivate(int x, int y, ref int result)
{
result = x + y;
}
}
如何AddWithRefPrivate
使用垫片测试该方法?
经过大量搜索,我只是找不到使用 shim 测试私有方法的方法。
这是我的课:
public class MyClass()
{
private void AddWithRefPrivate(int x, int y, ref int result)
{
result = x + y;
}
}
如何AddWithRefPrivate
使用垫片测试该方法?