Junit:测试方法是否返回字节数组

时间:2014-03-07 15:45:21

标签: java testing junit

假设我有一个类似于以下的方法:

public byte[] getByteArrayOutOfIt(Long Id)
{
Paper p = paper.getPaper(Id);
return convertPaperToByteArray(p); 
}

知道如何实际JUnit测试它是否返回byte []?

提前致谢。

0 个答案:

没有答案