如何为“中断异常”编写单元测试
2022-09-02 11:45:33
在尝试100%的代码覆盖率时,我遇到了一种情况,即我需要对捕获.如何正确地对此进行单元测试?(请用 JUnit 4 语法)InterruptedException
private final LinkedBlockingQueue<ExampleMessage> m_Queue;
public void addMessage(ExampleMessage hm) {
if( hm!=null){
try {
m_Queue.put(hm);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}