我JOptionPane.showInputDialog
在我的代码中使用调用。当 junit 测试运行时,它会弹出窗口。有没有办法抑制弹出窗口?沃尔德嘲笑它有帮助吗?请帮助我。
问问题
1773 次
1 回答
2
我知道 - 这个问题很古老。但也许有时有人会遇到同样的问题......
记住:这是你的代码,不是吗?所以你可以很容易地从
public boolean myMethod() {
String value = "NOTHING";
if(this.someCondition) {
value = JOptionPane.showInputDialog(...);
}
return "NOTHING".equals(value);
}
至
public boolean myMethod() {
String value = "NOTHING";
if(this.someCondition) {
value = getValueFromDialog();
}
return "NOTHING".equals(value);
}
protected getValueFromDialog() {
return JOptionPane.showInputDialog(...)
}
完成后,您可以编写一个测试来模拟 JOptionPane 的实际调用(示例使用Mockito语法)
@Test
public void test_myMethod() {
MyClass toTest = mock(MyClass.class);
//Call real method we want to test
when(toTest.myMethod()).doCallRealMethod();
//Mock away JOptionPane
when(toTest.getValueFromDialog()).thenReturn("HELLO JUNIT");
//Perform actual test code
assertFalse(toTest.myMethod());
}
全部完成 - 现在添加测试来模拟由于 JOptionPane.showInputDialog() 可能发生的所有有趣的事情(返回 null,返回意外的值......),只需添加测试用例和不同的值
when(toTest.getValueFromDialog()).thenReturn(...);
于 2015-05-07T14:23:01.463 回答