我写了一些代码。现在我需要为它编写单元测试。我不知道如何为这种方法编写它:
public void parceAuthResult()
{
NodeList nodeList = baseDocElement.getElementsByTagName("LoginResult");
if(nodeList != null && nodeList.getLength() > 0)
{
for(int i = 0 ; i < nodeList.getLength();i++)
{
Element el = (Element)nodeList.item(i);
NodeList rootResults = el.getElementsByTagName("a:RootResults");
if (rootResults.getLength() != 0)
authResult = true;
else
authResult = false;
}
}
}
baseDocElement 和 authResult 定义为
private Element baseDocElement;
private Boolean authResult;
我使用junit和反射测试的其他一些方法
请帮忙,我不知道如何测试。