java pst 库
我正在编写 Junit 测试,对于特定操作,我需要给出 java 库“pst.dll”的路径 我从 eclipse->run config->VM 参数设置它,并将路径设置为 pst.dll 问题是,我必须为每个测试用例执行此操作,否则我会得到: 线程“Thread-13”java.lang.UnsatisfiedLinkError中出现异常:java.library.path中没有pst
。 有没有办法为所有测试用例放置 pst.dll 的路径?或者为了项目避免每次添加它? 谢谢。
I'm wrinting Junit tests and for a specefic actions I need to give path the the java library "pst.dll"
I set it from eclipse->run config->VM arguments and I set the path to pst.dll
the problem is , I have to do it for each testcase otherwise I get :Exception in thread "Thread-13" java.lang.UnsatisfiedLinkError: no pst in java.library.path
.
Is there a way to put the path to the pst.dll for all test cases? or for the project to avoid to add it each time ?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为用于在 eclipse 中执行测试用例的 JRE 设置 VM 选项。转到窗口 ->首选项-> Java->安装 Jre 并在相应的 JDK/JRE 中配置此选项。
Set the VM options for the JRE you are using to execute the test cases in eclipse. Go to Window -> Preferences -> Java -> Installed Jre's and configure this option in the respective JDK/JRE.