摘要:
Here, I just note about how to use AQTime to find the bottleneck of a dll module. Steps: 1. Create a new project. Set "Host Application", which is the execution module to load your dll. N... 阅读全文
摘要:
用Mock Object进行独立单元测试(Testing in isolation with mock objects) 独立测试就是单独测试一个类或方法里的代码,而不测试里面调用的其他类或方法的代码。即假定调用的其他类或方法都正常执行。 使用Mock Object的场合 实际对象的行为还不确定。 实际的对象创建和初始化非常复杂。 实际对象中存在很难执行到的行为(如网络... 阅读全文