如何模拟Application.Current进行unit testing?
我有这个:
还有这个:
public class GrayscaleEffect : ShaderEffect{ private static PixelShader _pixelShader = new PixelShader() { UriSource = new Uri(@"pack://application:,,,/Effects/GrayscaleEffect.ps") }; /* ... rest of the class ... */ }
当我对它进行unit testing( MSTest
)时,它显然会引发IOException
(因为Application.Current
为null,因此pack://application:,,,/...
指向无处),并出现此错误:
Assembly.GetEntryAssembly() returns null. Set the Application.ResourceAssembly property or use the pack://application:,,,/assemblyname;component/ syntax to specify the assembly to load the resource from.
我如何模拟/注入解决它所需的一切?
好的,得到它,感谢Will :
if(Application.ResourceAssembly == null) Application.ResourceAssembly = typeof(MainWindow).Assembly; var window = new MainWindow();
Tal的答案对我没有用,我只是在运行测试之前调用下面的Application.Current填充:
上述就是C#学习教程:如何模拟Application.Current进行unit testing?分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!
var app = new Application();
本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。
ctvol管理联系方式QQ:251552304
本文章地址:https://www.ctvol.com/cdevelopment/943187.html