/// <summary>
 /// Create a new instance of the builder.
 /// </summary>
 public AutoSubstituteBuilder()
 {
     _substituteForRegistrations = new Dictionary <Type, object>();
     _afterBuildActions          = new List <Action <IComponentContext> >();
     _builder = new ContainerBuilder();
     _options = new AutoSubstituteOptions();
 }
 /// <summary>
 /// Creates a new instance that allows linking to the previous instance for derived builders.
 /// </summary>
 /// <param name="other">A <see cref="AutoSubstituteBuilder"/> that should be connected to this instance</param>
 private protected AutoSubstituteBuilder(AutoSubstituteBuilder other)
 {
     _substituteForRegistrations = other._substituteForRegistrations;
     _afterBuildActions          = other._afterBuildActions;
     _builder = other._builder;
     _options = other._options;
 }
示例#3
0
 public NSubstituteRegistrationHandler(AutoSubstituteOptions options)
 {
     _options = options;
 }