0
我想模擬一個JFileChooser
,其中有多個文件已被選中。目前,我有一個單一的文件嘲笑。是否可以模擬文件列表?
在for循環中,selctedFiles
變量尚未初始化。我想循環幾個文件。我正朝着正確的方向前進嗎?
@Test
public void testValidateFile()
{
String name = this.getName();
System.out.println("Test case Name = " + name);
JFileChooser fileChooser = mock(JFileChooser.class);
when(fileChooser.showOpenDialog(masterView.getContentPane())).thenReturn(0);
when(fileChooser.getSelectedFiles()).thenReturn(new File("/myImages/IMG_0037.JPG"));
for (File currentFile : selectedFiles) {
System.out.println(currentFile.getName());
}
}