如何从 Ant 将参数传递给 Junit 测试?

发布于 2024-09-24 22:17:50 字数 212 浏览 6 评论 0原文

我在Ant下使用Junit执行Selenium测试。我的测试用例需要读取文件 其中包含测试数据(以完成数据驱动测试)。 我不介意在测试用例中嵌入文件名,但我想知道该文件所在的目录的名称 数据文件参数化存储在 build.xml 文件中。

将此类信息从 build.xml 传递到测试用例的最佳方法是什么? 使用ant属性是个好主意吗? 是否可以从 build.xml 注入 Junit4 参数?

I'm using Junit under Ant to perform Selenium Test.My test cases need to read files
which contain test data(in order to accomplish data driven test).
I don't mind embedding the file names in the test cases, but I'd like to have the name of the directory where the
data files are stored parameterized in the build.xml file.

What's the best way to pass information like that from build.xml down into the test cases?
Is it a good idea to use ant property?
Is it possible to inject Junit4 parameter from build.xml?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗恋未遂 2024-10-01 22:17:50

junit 任务接受嵌套的 sysproperty 元素。

<junit fork="no">
  <sysproperty key="mydatadir" value="${whatever}"/>
  ...
</junit>

您可以使用 System.getProperty()

The junit task accepts nested sysproperty elements.

<junit fork="no">
  <sysproperty key="mydatadir" value="${whatever}"/>
  ...
</junit>

You can access these from within your tests using System.getProperty().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文