作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以模拟 Assembly
类(class)?
如果是这样,使用什么框架,以及如何?
如果不是,如何为使用 Assembly
的代码编写测试? ?
最佳答案
TypeMock非常强大。我想它可以做到。对于 Moq 或 Rhino 等其他模拟框架,您将需要使用另一种策略。
Rhino 或 Moq 的策略:
例如:您正在使用 组装类来获取程序集的全名。
public class YourClass
{
public string GetFullName()
{
Assembly ass = Assembly.GetExecutingAssembly();
return ass.FullName;
}
}
_Assembly
派生的类.所以,不要使用
组装 直接注入(inject)接口(interface)即可。然后,很容易为您的测试模拟界面。
public class YourClass
{
private _Assembly _assbl;
public YourClass(_Assembly assbl)
{
_assbl = assbl;
}
public string GetFullName()
{
return _assbl.FullName;
}
}
_Assembly
:
public void TestDoSomething()
{
var assbl = MockRepository.GenerateStub<_Assembly>();
YourClass yc = new YourClass(assbl);
string fullName = yc.GetFullName();
//Test conditions
}
关于.net - 我怎样才能模拟大会?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1375848/
我是一名优秀的程序员,十分优秀!