单元测试以验证 WinForms 应用程序不会多次加载程序集

发布于 2024-11-16 15:44:16 字数 219 浏览 3 评论 0原文

我正在尝试编写一个单元测试(NUnit),它将:

  1. 创建某个 Form 的实例。
  2. 连接 AppDomain 的相关 AssemblyLoad 事件来构建已加载程序集名称的列表。
  3. 如果同一个程序集加载两次,则会失败。
  4. 否则-通过。

我似乎无法理解这一点的逻辑......测试总是通过。

这可以做到吗?

I am trying to write a unit test (NUnit) that will:

  1. Create an instance of some Form.
  2. Hook up the relevant AssemblyLoad event of the AppDomain to build a List of loaded assembly names.
  3. If the same assembly is loaded twice, fail.
  4. Otherwise - pass.

I cannot seem to get the logic for this... The test always passes.

Can this be done ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心欲静而疯不止 2024-11-23 15:44:16

让你的单元测试失败是很难的。 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.

半﹌身腐败 2024-11-23 15:44:16

在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文