单元测试以验证 WinForms 应用程序不会多次加载程序集
我正在尝试编写一个单元测试(NUnit),它将:
- 创建某个 Form 的实例。
- 连接 AppDomain 的相关 AssemblyLoad 事件来构建已加载程序集名称的列表。
- 如果同一个程序集加载两次,则会失败。
- 否则-通过。
我似乎无法理解这一点的逻辑......测试总是通过。
这可以做到吗?
I am trying to write a unit test (NUnit) that will:
- Create an instance of some Form.
- Hook up the relevant AssemblyLoad event of the AppDomain to build a List of loaded assembly names.
- If the same assembly is loaded twice, fail.
- Otherwise - pass.
I cannot seem to get the logic for this... The test always passes.
Can this be done ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
让你的单元测试失败是很难的。 CLR 已确保程序集仅加载一次。非常重要的是,多次加载相同的程序集会导致在运行时很难诊断转换错误。
您必须使用可怕的 Assembly.LoadFile() 来引发失败。避免测试你一开始就不应该做的事情。
It is hard to make your unit test fail. The CLR already makes sure that an assembly only gets loaded once. Pretty important, getting the same assembly loaded more than once produces very hard to diagnose casting errors at runtime.
You'd have to use the horrid Assembly.LoadFile() to trip a fail. Avoid testing things you should never do to begin with.
在 AppDomain 中加载程序集后,您将无法再次加载它,并且似乎不存在 Assembly.Unload 方法之一。好吧,从技术上讲,如果您 卸载所有加载它的AppDomains。
Once you load an assembly in the AppDomain, you cannot load it again and there doesn't appear to be an Assembly.Unload method either. Well, technically you can unload the assembly if you unload all of the AppDomains that loaded it.