public void SetUp()
 {
     subject      = new RejectedPromise <TWrapper <int> > (new Exception());
     doneCallback = new DoneCallback <TWrapper <int> > ();
     failCallback = new FailCallback();
     exceptions   = new List <Exception> ();
 }
Exemple #2
0
 public void SetUp()
 {
     source       = new DisposedPromise <TWrapper <int> > ();
     doneCallback = new DoneCallback <TWrapper <int> > ();
     failCallback = new FailCallback();
     exceptions   = new List <Exception> ();
 }
 public void SetUp()
 {
     doneCallback = new DoneCallback <TWrapper <int> > ();
     failCallback = new FailCallback();
     exceptions   = new List <Exception> ();
 }