Пример #1
0
		public CodeFunction(IMethod method, IDocumentLoader documentLoader, IVirtualMethodUpdater methodUpdater)
			: base(method)
		{
			this.Method = method;
			this.documentLoader = documentLoader;
			this.methodUpdater = methodUpdater;
		}
Пример #2
0
 public CodeFunction(IMethod method, IDocumentLoader documentLoader, IVirtualMethodUpdater methodUpdater)
     : base(method)
 {
     this.Method         = method;
     this.documentLoader = documentLoader;
     this.methodUpdater  = methodUpdater;
 }
Пример #3
0
 void CreateFunction()
 {
     methodUpdater = MockRepository.GenerateStub <IVirtualMethodUpdater>();
     codeFunction  = new CodeFunction(helper.Method, null, methodUpdater);
 }
Пример #4
0
		void CreateFunction()
		{
			methodUpdater = MockRepository.GenerateStub<IVirtualMethodUpdater>();
			codeFunction = new CodeFunction(helper.Method, null, methodUpdater);
		}