用junit测试主要方法

用junit测试主要方法,第1张

用junit测试主要方法

要提供来自文件的输入,请创建一个

FileInputStream
并将其设置为
System.in
流。您可能要在main方法完成后将原始文件放回原处,以确保以后使用它的所有内容仍然有效(其他测试,JUnit本身…)

这是一个例子:

@Testpublic void testMain() throws IOException {    System.out.println("main");    String[] args = null;    final InputStream original = System.in;    final FileInputStream fips = new FileInputStream(new File("[path_to_file]"));    System.setIn(fips);    Main.main(args);    System.setIn(original);}

在您的实际代码中,您将需要处理任何IOExceptions并使用比文件的完整路径更好的方法(通过类加载器获取),但这为您提供了总体思路。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5426966.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存