如何使用Moq测试我的Web API控制器?

时间:2018-10-29 20:08:49

标签: c# asp.net-web-api2 moq nspec

我发现this post似乎正是我想要测试控制器的东西。但是,在构建项目时,出现错误消息

  

方法上下文主体引发类型为'FileNotFoundException'的异常

我不确定我缺少什么。这是我到目前为止的全部功能:

ARKitWorldTrackingSessionConfiguration config = new ARKitWorldTrackingSessionConfiguration();
config.planeDetection = UnityARPlaneDetection.Horizontal;
config.alignment = UnityARAlignment.UnityARAlignmentGravity;
config.enableLightEstimation = true;  

UnityARSessionNativeInterface.GetARSessionNativeInterface().RunWithConfigAndOptions(config, 
                                                                                    UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors | 
                                                                                    UnityARSessionRunOption.ARSessionRunOptionResetTracking);

我认为我拥有所有需要的参考资料。我正在使用Autofac为我的控制器执行IoC,但我认为此时控制器实际上只是常规类,并且没有发生任何WebAPI魔术。

还有其他人遇到吗?

0 个答案:

没有答案