在应用程序服务器属性中配置数据源时对 CRUD 操作进行单元测试
请告诉我:
当正常应用程序工作的许多属性保存在应用程序服务器的配置文件中时,如何为“插入某个表”操作编写单元测试(例如使用 JUnit)?
谢谢!
Please, tell me:
How can I write unit test (e.g. with JUnit) for operation "insert into some table" when many properties for normal application work are saved in config files for application server?
Thanks!a
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以:
或者
如果您使用共享单例
ConfigurationSettings
(或类似的东西)来获取配置数据,则无法使用第二个选项。如果是这种情况,请使用第一种方法 - 无论如何,这通常更好。 (正如您的问题所示,不同的调用者使用不同的配置技术。)You can either:
Or
The second option won't be possible if you use a shared singleton
ConfigurationSettings
(or something similar) to get your configuration data. If that's the case, use the first method - which is generally better anyway. (As your question demonstrates, different callers use different configuration techniques.)