文章目錄
Fake Assembly 無法自動產生 *.Fakes dll 及出現 build fail
在 如何 Mock System.Web.Hosting.HostingEnvironment.MapPath 虛擬路徑 提到同事想要 mock System.Web.Hosting.HostingEnvironment.MapPath
的值,試了半天決定用 fake dll 的方法來直接解決,但過程不太順利,所以留下紀錄
重現問題:無法出現 System.Web.Fakes/System.Web.Http.Fakes dll
加入 Fakes assembly
未出現 System.Web.Http.Fakes/System.Web.Fakes dll
錯誤訊息 1:CS0430
訊息內容
12345Error CS0430 The extern alias 'swhod' was not specified in a /reference option [C:\Users\yowko.tsai\documents\visual studio 2015\Projects\DemoUnitTesting\DemoWebApiTesting.Tests\obj\Debug\Fakes\swh\f.csproj] DemoWebApiTesting.Tests C:\Users\yowko.tsai\documents\visual studio 2015\Projects\DemoUnitTesting\DemoWebApiTesting.Tests\f.cs 19 ActiveError project compilation failed with exit code 1 DemoWebApiTesting.Tests C:\Users\yowko.tsai\documents\visual studio 2015\Projects\DemoUnitTesting\DemoWebApiTesting.Tests\GENERATEFAKESError project compilation failed with exit code 1 DemoWebApiTesting.Tests C:\Users\yowko.tsai\documents\visual studio 2015\Projects\DemoUnitTesting\DemoWebApiTesting.Tests\GENERATEFAKES錯誤截圖
解決方式
System.Web.Http
開啟 Fakes 資料夾中的
System.Web.Http.fakes
設定檔加入下列設定
12345678<StubGeneration><Clear /><Add Interfaces="true"/></StubGeneration><ShimGeneration><Clear /><Add Namespace="System.Web.Http.ExceptionHandling"/></ShimGeneration>設定前後比較
修改前
123<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/"><Assembly Name="System.Web.Http" Version="5.2.3.0"/></Fakes>修改後
1234567891011<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/"><Assembly Name="System.Web.Http" Version="5.2.3.0"/><StubGeneration><Clear /><Add Interfaces="true"/></StubGeneration><ShimGeneration><Clear /><Add Namespace="System.Web.Http.ExceptionHandling"/></ShimGeneration></Fakes>
System.Web
- 開啟 Fakes 資料夾中的
System.Web.fakes
設定檔 加入下列設定
12345678<StubGeneration><Clear /><Add Interfaces="true"/></StubGeneration><ShimGeneration><Clear /><Add Namespace="System.Web"/></ShimGeneration>設定前後比較
修改前
123<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/"><Assembly Name="System.Web" Version="4.0.0.0"/></Fakes>修改後
1234567891011<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/"><Assembly Name="System.Web" Version="4.0.0.0"/><StubGeneration><Clear /><Add Interfaces="true"/></StubGeneration><ShimGeneration><Clear /><Add Namespace="System.Web"/></ShimGeneration></Fakes>
- 開啟 Fakes 資料夾中的
重新執行產生 fake dll
錯誤訊息:CS0234
訊息內容
1234Error CS0234 The type or namespace name 'EventSourceCreatedEventArgs' does not exist in the namespace 'System.Diagnostics.Tracing' (are you missing an assembly reference?) [C:\Users\yowko.tsai\documents\visual studio 2015\Projects\TestFakeError\TestFakeError.Tests\obj\Debug\Fakes\m\f.csproj] TestFakeError.Tests C:\Users\yowko.tsai\documents\visual studio 2015\Projects\TestFakeError\TestFakeError.Tests\f.cs 17698 ActiveError project compilation failed with exit code 1 TestFakeError.Tests C:\Users\yowko.tsai\documents\visual studio 2015\Projects\TestFakeError\TestFakeError.Tests\GENERATEFAKESError project compilation failed with exit code 1 TestFakeError.Tests C:\Users\yowko.tsai\documents\visual studio 2015\Projects\TestFakeError\TestFakeError.Tests\GENERATEFAKES錯誤畫面
解決方式
- 開啟 Fakes 資料夾中的
mscorlib.fakes
設定檔 加入下列設定
12345<StubGeneration><Remove FullName="System.Diagnostics.Tracing"/><Remove FullName="System.Text.Encoding"/><Remove FullName="System.Security.Cryptography" /></StubGeneration>設定前後比較
修改前
123<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/"><Assembly Name="mscorlib" Version="4.0.0.0"/></Fakes>修改後
12345678<Fakes xmlns="http://schemas.microsoft.com/fakes/2011/"><Assembly Name="mscorlib" Version="4.0.0.0"/><StubGeneration><Remove FullName="System.Diagnostics.Tracing"/><Remove FullName="System.Text.Encoding"/><Remove FullName="System.Security.Cryptography" /></StubGeneration></Fakes>
- 開啟 Fakes 資料夾中的
錯誤訊息:Unexpected error returned by SetDetourProvider
訊息內容
12Microsoft.QualityTools.Testing.Fakes.UnitTestIsolation.UnitTestIsolationException"Unexpected error returned by SetDetourProvider in profiler library 'C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\IntelliTrace\14.0.0\Microsoft.IntelliTrace.Profiler.14.0.0.dll'."錯誤畫面
解決方式
參考資料
文章作者 Yowko Tsai
上次更新 2021-11-03
授權合約
本部落格 (Yowko's Notes) 所有的文章內容(包含圖片),任何轉載行為,必須通知並獲本部落格作者 (Yowko Tsai) 的同意始得轉載,且轉載皆須註明出處與作者。
Yowko's Notes 由 Yowko Tsai 製作,以創用CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款 釋出。