你好我是新來的編碼,特別是單元測試,我試圖找到一種方法來設置兩個引用參數私有方法,以測試它,而不會改變我的任何我的代碼,例如:將ref參數設置爲私有方法
public class A
{
public string RefPrivateMethod()
{
//some code that usually set the strings
CompareTwoRefStrings(ref largerString, ref smallerString);
return largerString;
}
private void CompareTwoRefStrings(ref string largerString, ref string smallerString)
{
int res = largerString.CompareTo(smallerString);
string temp;
if (!(res >= 0))
{
temp = largerString;
largerString = smallerString;
smallerString = temp;
}
}
}
你的問題是什麼? –
如何從我的測試中設置largeString和smallerString參數。 – CorryM
該代碼甚至沒有編譯... – Fildor