public void OnTestInitialize()
 {
     this.systemManager = Mock.Create <ISystemManagerWrapper>();
     this.sutInstance   = new SutClass(this.systemManager);
 }
Exemplo n.º 2
0
 public SutClass(ISystemManagerWrapper wrapper)
 {
     this.wrapper = wrapper;
 }