嗨,我有这样的问题。我的类正在解析输入数据,当指定文件不存在时它应该抛出异常。这样做的正确方法是什么?我做了这样的事情:
@Test
public void allOK() throws IOException {
words = folder.newFile("words");
String[] args = new String[10];
args[0] = "-rw";
args[1] = "20";
args[2] = "-rf";
args[3] = "4";
args[4] = "-w";
args[5] = "words";
args[6] = "-r";
args[7] = "results";
args[8] = "-c";
args[9] = "1000";
Options options = Options.getInstance();
options.setOptions(args);
assertEquals(20, options.getRows());
}
当然文件夹是TemporaryFolder。我不认为我可以发送一个临时创建的文件字符串来运行。所以测试总是失败,因为找不到文件。那你能告诉我怎么做吗?