Exemplo n.º 1
0
 protected override void Context()
 {
     _compoundProcessRepository = A.Fake <ICompoundProcessRepository>();
     _executionContext          = A.Fake <IExecutionContext>();
     _applicationController     = A.Fake <IApplicationController>();
     sut = new CompoundProcessTask(_compoundProcessRepository, _executionContext, _applicationController);
 }
Exemplo n.º 2
0
 protected override void Context()
 {
     _executionContext = A.Fake <IExecutionContext>();
     sut = new CompoundProcessTask(_executionContext);
 }