如何从甘特脚本中运行测试应用程序?
我想在每次测试运行后执行一些额外的脚本步骤。 所以基本上,我想在 grails 中创建一个新脚本,它
- 首先调用标准
test-app 功能:webtest -baseUrl=http://example.com
- 然后运行某种清理脚本
现在我想知道如何从我的脚本中调用 test-app
脚本......
I would like to execute some additional script steps after each test run.
So basically, I would like to create a new script in grails which
- first calls the standard
test-app functional:webtest -baseUrl=http://example.com
- afterwards runs some kind of clean-up script
Now I wonder about how to call the test-app
script from within my script...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此示例显示了执行此操作的常见方法:
grailsScript("_GrailsInit")
行实现了这一点,并将 grails 脚本的目标包含到自己的目标中。你可以看看这个 http://grails.org/doc/latest/指南/commandLine.html#creatingGantScripts
The common way to do that is shown in this example:
The line
grailsScript("_GrailsInit")
does the trick and inlcudes the targets of the grails scripts into the own.You can have a look at this http://grails.org/doc/latest/guide/commandLine.html#creatingGantScripts
您需要像这样使用execute.shell命令:
请参阅http://gant.codehaus.org/执行+工具以获取更多信息。
You'll need to use the execute.shell command like so:
See http://gant.codehaus.org/Execute+Tool for more information.