public void Setup()
 {
     this.Type         = typeof(MockObject);
     this.Dependencies = new List <Dependency>();
     this.Target       = new ConstructorFilter(Array.Empty <Type>());
 }
示例#2
0
 public void Setup()
 {
     this.Type         = typeof(MockObject);
     this.Dependencies = new List <Type>();
     this.Target       = new ConstructorFilter(new[] { typeof(int) });
 }