asp.net-mvc - Moles 无法与 MVC3 (System.Web.Mvc.dll) 一起使用

标签 asp.net-mvc asp.net-mvc-3 moles

我刚刚开始研究摩尔框架,从一开始我就没有得到很好的经验。 由于某种原因,我无法为 System.Web.Mvc.dll (v.3) 生成摩尔

我会尝试逐步解释我的问题

  1. 在刚刚创建的空解决方案中,我添加了两个项目(Asp.Net MVC 3 和 Test)。
  2. 在测试项目中添加 C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 3\System.Web.Mvc.dll) 引用。
  3. 在我的测试项目中为 System.Web.Mvc.dll 添加 Moles Assemly(在 VS2010 中)。
  4. 构建项目。

在第 4 步中,我收到以下错误

    ------ Build started: Project: SampleMvcApplication.UnitTests, Configuration: Debug Any CPU ------
  Microsoft Moles v0.94.51023.0 - http://research.microsoft.com/moles - .NET v4.0.30319
  Copyright (c) Microsoft Corporation 2007-2010. All rights reserved.

  00:00:00.00> moles
    Moles : info : metadata : ignoring reference D:\Samples\Moles\SampleMVC\SampleMvcApplication\SampleMvcApplication.UnitTests\MolesAssemblies\System.Behaviors.dll
    Moles : info : metadata : ignoring reference D:\Samples\Moles\SampleMVC\SampleMvcApplication\SampleMvcApplication.UnitTests\MolesAssemblies\System.Moles.dll
    Moles : info : metadata : ignoring reference D:\Samples\Moles\SampleMVC\SampleMvcApplication\SampleMvcApplication.UnitTests\MolesAssemblies\System.Web.WebPages.Moles.dll
    Moles : info : configuration : diagnostic is on
    Moles : info : metadata : loading C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 3\Assemblies\System.Web.Mvc.dll
    Moles : info : compilation : output assembly name: System.Web.Mvc.Moles
Moles : warning : metadata : failed to load module System.Web.Mvc.dll:
Moles : warning : metadata : Inheritance security rules violated by type: 'System.Web.Mvc.CompareAttribute'. Derived types must either match the security accessibility of the base type or be less accessible.
Moles : warning : metadata : Inheritance security rules violated by type: 'System.Web.Mvc.RemoteAttribute'. Derived types must either match the security accessibility of the base type or be less accessible.
Moles : error : code : assembly contains no types or failed to load properly
  00:00:00.20> moles generator 1 errors, 3 warnings
C:\Program Files (x86)\Microsoft Moles\bin\Microsoft.Moles.targets(79,5): error MSB3073: The command ""C:\Program Files (x86)\Microsoft Moles\bin\moles.exe" @D:\Samples\Moles\SampleMVC\SampleMvcApplication\SampleMvcApplication.UnitTests\obj\Debug\Moles\moles.args" exited with code -1005.
------ Build started: Project: SampleMvcApplication, Configuration: Debug Any CPU ------
  Microsoft Moles v0.94.51023.0 - http://research.microsoft.com/moles - .NET v4.0.30319
  Copyright (c) Microsoft Corporation 2007-2010. All rights reserved.

  00:00:00.00> moles
    Moles : info : metadata : loading C:\Program Files (x86)\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\Assemblies\System.Web.WebPages.dll
    Moles : info : compilation : output assembly name: System.Web.WebPages.Moles
    Moles : info : code : found 71 types
    Moles : info : code : visibility: exported or assembly(System.Web.WebPages.Moles)
    00:00:00.34> code generation
      Moles : info : code : generating code at D:\Samples\Moles\SampleMVC\SampleMvcApplication\SampleMvcApplication\obj\Debug\Moles\swwp\m.g.cs
      00:00:00.46> stubs generation
        Moles : info : code : generated 23 stub types
      00:00:00.86> moles generation
        Moles : info : code : generated 33 mole types
    00:00:01.70> compiling
      Moles : info : compilation : Moles assembly: D:\Samples\Moles\SampleMVC\SampleMvcApplication\SampleMvcApplication\MolesAssemblies\System.Web.WebPages.Moles.dll
  00:00:02.43> moles generator 0 errors, 0 warnings
  SampleMvcApplication -> D:\Samples\Moles\SampleMVC\SampleMvcApplication\SampleMvcApplication\bin\SampleMvcApplication.dll
========== Build: 1 succeeded or up-to-date, 1 failed, 0 skipped ==========

我调查了我发现的所有主题,但没有任何帮助(我什至没有找到关于这个问题的一些好的答案和解释。)

这也没有帮助(解决方案排除有问题的类型) Cannot use moles to mock the MVC framework

请指教。 谢谢。

最佳答案

您使用单元测试吗?如果是,请检查您的单元测试中是否有 MVC 3 dll 引用。

关于asp.net-mvc - Moles 无法与 MVC3 (System.Web.Mvc.dll) 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7659284/

相关文章:

moles - 为什么鼹鼠不断被添加到我的项目中?

c# - 当前不会命中断点,因为 Razor 代码中的源代码不同

asp.net-mvc - 如何在 IIS 7 下为 ASP.Net MVC 应用程序的匿名用户创建本地用户配置文件?

asp.net-mvc - 需要接触数据库的模型验证的推荐方法

asp.net-mvc - Ninject-ing Global.asax 中的依赖项

c# - Microsoft fakes 的 shim 在内部是如何工作的?

c# - ASP.NET MVC3 Entity Framework - 指定为此 MSL 一部分的 EntitySet 'x' 在 MetadataWorkspace 中不存在

asp.net-mvc - 通过 linq 查询查看

c# - 什么是最好的 MVC3 解决方案结构?

c# - Moles 以代码 -1002 退出,我怎么知道它发生了什么?