我有一个方法:doctorQueue
,它获取三个参数:数据类型(通过 java.util.Date)、时间和 ID(字符串)。
返回值为void
,如果同时已经有队列,则给出异常。
我使用 Junit 编写了下一个方法:
public void checkQueueDoctor(){
Date date = new Date (2012,4,25);
Time time = new Time (13, 0, 0);
assertTrue(doctorQueue("83849829", date, time));
..... // and so on
}
它给了我下一个问题:The method assertTrue(boolean) in the type Assert is not applicable for the arguments (void)
.
我当然理解它,但是我如何检查函数,它的返回值是无效的?