public void TearDown()
 {
     _vivoDataCollectionRepository = null;
     _dataCollectionRepository = null;
 }
 public void Setup()
 {
     _dataCollectionRepository = Substitute.For<IDataCollectionRepository>();
     _vivoDataCollectionRepository = Substitute.For<IVivoDataCollectionRepository>();
 }
示例#3
0
 public void TearDown()
 {
     _vivoDataCollectionRepository = null;
     _dataCollectionRepository     = null;
 }
示例#4
0
 public ExportToVivoHandler(IVivoDataCollectionRepository vivoDataCollectionRepository, IDataCollectionRepository dataCollectionRepository)
 {
     _vivoDataCollectionRepository = vivoDataCollectionRepository;
     _dataCollectionRepository     = dataCollectionRepository;
 }
示例#5
0
 public void Setup()
 {
     _dataCollectionRepository     = Substitute.For <IDataCollectionRepository>();
     _vivoDataCollectionRepository = Substitute.For <IVivoDataCollectionRepository>();
 }