11 2014 档案
摘要:MockRepository mocks = new MockRepository();ISongBird maleBird = (ISongBird)mocks.StrictMock(typeof(ISongBird)), femaleBird = (ISongBird)mocks.Stri...
阅读全文
摘要:ExpectationViolationException异常的原因是没有按照mock的顺序调用方法。mock bmock a//expectationcall acall bcall a//correctcall bcall a解决方法是按照调用顺序去mock.
阅读全文
摘要:Expect.Call(testClass.Test(new Arg())).IgnoreArguments().Return(2000).Callback(new Func((arg) => { Console.Write(111); return true; }));.Callback(xxx)...
阅读全文
摘要:1.关闭分支,首先切到你要关闭的分支 hg commit --close-branch -m. 2.仓库ip地址改变之后,重设仓库ip 找到.hg文件夹 - hgrc文件 - 记事本打开重设 3.推分支的时候提示 push creates new remote head xxxxxxx! 没拉,拉下
阅读全文