如何从 Ant 将参数传递给 Junit 测试?
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
junit 任务接受嵌套的
sysproperty
元素。您可以使用 System.getProperty()。
The junit task accepts nested
sysproperty
elements.You can access these from within your tests using System.getProperty().