与弗兰克和黄瓜一起复制资源
我有一个 iPhone 项目,我使用 Frank 和 Cucumber 进行验收测试。
我的应用程序具有从文档目录收集文件并在应用程序数据库中索引它们的功能。
我想用黄瓜测试这个功能。但这意味着我必须将文件复制到应用程序文档目录。
我的问题是:
- 如何动态地定义步骤来复制文件?
- 资源在被复制之前放置在哪里?在什么文件夹结构中?
- 如何从我的步骤定义中访问这些文件?
谢谢。
I have a iPhone project where i use frank and cucumber for acceptance testing.
My application has a feature to collect files from the documents directory and index them in the applications database.
I want to test this feature with cucumber. But this means i have to copy files to the applications documents directory.
My questions are:
- How do i dynamically make step definitions to copy files?
- Where do place the resources before they get copied? In what folder structure?
- How do i reach these files from my step definitions?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们创建了一个辅助函数来执行类似的操作,将图像注入到模拟器图库中。
然后在本机代码方面,我们有一个名为 FEX_Helper 的辅助类,可以在我们需要在运行时修改应用程序的任何地方提供帮助(RubyMotion 代码)但v.类似于objective-c,除了语法):
最后模拟器媒体路径是这样定义的:
希望能帮助有人尝试将文件注入模拟器进行测试。
标记
We created a helper function to do something like this for injecting images into the simulator gallery..
and then on the native code side, we have a helper class called FEX_Helper to aid in anything where we need to modify the app at runtime (RubyMotion code but v. similar to objective-c except for the syntax):
Lastly the simulator media path is defined thusly:
Hope that helps someone trying to inject files into the simulator for testing.
Mark