示例#1
0
        public void CanConstruct()
        {
            var instance = new LocationOverviewHttpTriggerFunction(_locationOverviewService.Object, _tableTrackerService.Object);

            Assert.NotNull(instance);
        }
示例#2
0
 public LocationOverviewHttpTriggerFunctionTests()
 {
     _locationOverviewService = new Mock <ILocationOverviewService>();
     _tableTrackerService     = new Mock <ITableTrackerService>();
     _sut = new LocationOverviewHttpTriggerFunction(_locationOverviewService.Object, _tableTrackerService.Object);
 }