黄瓜和 Silverlight 4
所以我想知道是否有人熟悉 Cucumber 和 Silverlight 或已经对 Cucumber 和 Silverlight 做过任何工作。我目前有一个模板目录和构建文件,将使用 Bacon(轻量级 RSpec)创建 RSpec 测试。我一直在研究 SpecFlow 和 Cuke2Nuke,但我看到的几乎所有内容都适用于通用 .net 代码,而不是 silverlight 代码。
谢谢。
So I am wondering if anyone is familiar or has done any work with cucumber and Silverlight. I currently have a template directory and build file that will create RSpec tests using Bacon (light weight RSpec). I have been looking into SpecFlow and Cuke2Nuke but almost everything I have seen works with general .net code not silverlight code.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SpecFlow 是一个使用 .NET 执行 BDD 的开源项目。从版本 3.1.2 开始,它还支持 Silverlight。您可以在以下位置查看示例: http:// github.com/techtalk/SpecFlow-Examples/tree/master/BowlingKata/BowlingKata-Silverlight-MsTest/
SpecFlow 使用纯文本定义格式(Gherkin - 与 Cucumber 相同的格式),并从中生成单元测试(如果是 Silverlight,则支持 MsTest)。
您还可以查看有关 SpecFlow Silvelight 集成的 wiki:https://github.com/ techtalk/SpecFlow/wiki/silverlight-support
SpecFlow is an open-source project to do BDD with .NET. From version 3.1.2 it also supports Silverlight. You can check the sample at: http://github.com/techtalk/SpecFlow-Examples/tree/master/BowlingKata/BowlingKata-Silverlight-MsTest/
SpecFlow is using a plain text definition format (Gherkin - same format as cucumber), and it generates unit tests from it (in case of Silverlight, MsTest is supported).
You can also check the wiki about the SpecFlow Silvelight integration: https://github.com/techtalk/SpecFlow/wiki/silverlight-support