Unit Test
文章平均质量分 81
SalmonellaVaccine
这个作者很懒,什么都没留下…
展开
-
Mocking a method to throw an exception in C#
http://stackoverflow.com/a/10323930MockIFileConnection> fileConnection = new MockIFileConnection>( MockBehavior.Strict);fileConnection转载 2015-02-24 06:51:25 · 541 阅读 · 0 评论 -
.NET Dictionaries have same keys and values, but aren't “equal”
http://stackoverflow.com/a/2219057/2177408Dictionary class does not override Object.Equals method as seen from MSDN doco:http://msdn.microsoft.com/en-us/library/bsc2ak47.aspxDeterm转载 2015-02-24 07:47:37 · 565 阅读 · 0 评论 -
C#依赖注入(IOC)
http://www.cnblogs.com/smiler/p/3269370.html背景介绍在设计模式中,尤其是结构型模式很多时候解决的就是对象间的依赖关系,变依赖具体为依赖抽象。平时开发中如果发现客户程序依赖某个或某类对象,我们常常会对他们进行一次抽象,形成抽象的抽象类、接口,这样客户程序就可以摆脱所依赖的具体类型。这个过程中有个环节被忽略了------谁来选择客户程转载 2015-03-04 05:45:26 · 1357 阅读 · 1 评论 -
C#依赖注入(IOC)二
http://www.cnblogs.com/smiler/p/3271823.html上一章我们讲了构造注入与设值注入,这一篇我们主要讲接口注入与特性注入。接口注入接口注入是将抽象类型的入口以方法定义在一个接口中,如果客户类型需要获得这个方法,就需要以实现这个接口的方式完成注入。实际上接口注入有很强的侵入性,除了要求客户类型增加前面两种方式所需要的代码外,还必转载 2015-03-04 05:44:24 · 1085 阅读 · 0 评论 -
C# Moq和UnitTesting问题汇总
Using Moq to determine if a method is calledhttp://stackoverflow.com/questions/347818/using-moq-to-determine-if-a-method-is-calledYou can see if a method in something you have mocked h原创 2015-03-05 01:42:16 · 1229 阅读 · 0 评论 -
Assigning out/ref parameters in Moq
http://stackoverflow.com/a/3135677/2177408public interface IService{ void DoIt(out string a);}[TestMethod]public void Test(){ var service = new MockIService>(); var expectedVal转载 2015-04-15 06:31:04 · 517 阅读 · 0 评论