Exemplo n.º 1
0
 public ReturnAutoValue(AutoValueBehaviour autoValueBehaviour, IEnumerable <IAutoValueProvider> autoValueProviders, ICallResults callResults, ICallSpecificationFactory callSpecificationFactory)
 {
     _autoValueProviders       = autoValueProviders;
     _callResults              = callResults;
     _callSpecificationFactory = callSpecificationFactory;
     _autoValueBehaviour       = autoValueBehaviour;
 }
Exemplo n.º 2
0
 public ReturnAutoValue(AutoValueBehaviour autoValueBehaviour, IEnumerable<IAutoValueProvider> autoValueProviders, ICallResults callResults, ICallSpecificationFactory callSpecificationFactory)
 {
     _autoValueProviders = autoValueProviders;
     _callResults = callResults;
     _callSpecificationFactory = callSpecificationFactory;
     _autoValueBehaviour = autoValueBehaviour;
 }
Exemplo n.º 3
0
 public ReturnAutoValue CreateReturnAutoValue(AutoValueBehaviour autoValueBehaviour)
 {
     return(new ReturnAutoValue(autoValueBehaviour, new[] { _firstAutoValueProvider, _secondAutoValueProvider }, _callResults, _callSpecificationFactory));
 }
Exemplo n.º 4
0
 public ReturnAutoValue(AutoValueBehaviour autoValueBehaviour, IEnumerable <IAutoValueProvider> autoValueProviders, IConfigureCall configureCall)
 {
     _autoValueProviders = autoValueProviders;
     ConfigureCall       = configureCall;
     _autoValueBehaviour = autoValueBehaviour;
 }
Exemplo n.º 5
0
 public ReturnAutoValue CreateReturnAutoValue(AutoValueBehaviour autoValueBehaviour)
 {
     return(new ReturnAutoValue(autoValueBehaviour, new[] { _firstAutoValueProvider, _secondAutoValueProvider }, ConfigureCall));
 }