在 Windows Phone 7 mango 上测试数据库
我需要为我的 WP7 应用程序编写单元测试。测试在桌面上运行(而不是在设备或模拟器上)。问题是当我尝试在桌面框架上创建 DataContext 类时,它在 ctor 中失败。
我在参考文献中使用WindowsPhone的mscorlib(2.0.5.0)。
看起来它需要手机中的一些 DLL,但我不确定是什么。
可能有人有同样的问题。
谢谢!
I need to write unit tests for my WP7 app. Tests are run on desktop(not on device or emulator). The problem is when i try creating DataContext class on desktop framework it fails in ctor.
I use WindowsPhone's mscorlib(2.0.5.0) in references.
Looks like it needs some DLL's from phone, but im not sure what.
Possibly someone had same problem.
Thanx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用 Silverlight 单元测试框架?在这种情况下,恐怕无法从 SL 应用程序访问 SQL Server CE。请参阅可以silverlight客户端访问存储在独立存储中的本地sql紧凑数据库
我认为你最好的选择是模拟数据上下文。
Are you using the Silverlight Unit Testing Framework? In that case, I'm afraid there's no way to access SQL Server CE from a SL application. See Can a silverlight client access a local sql compact database that is stored in isolated storage
I think your best go is to mock the data context.