public async Task GetWeatherLogs_isEQToSeeded3()
        {
            //Arrange
            _context = new ApplicationDbContext(
                new DbContextOptionsBuilder <ApplicationDbContext>().UseSqlite(CreateInMemoryDatabase()).Options);
            _mockHub           = Substitute.For <IHubContext <WeatherHub> >();
            _weatherController = new WeatherLogsController(_context, _mockHub);
            Seed();

            //Act
            ActionResult <IEnumerable <WeatherLog> > logs = await _weatherController.GetWeatherLogs();

            //Assert
            Assert.Equal(3, logs.Value.Count());

            Dispose();
        }
        public async Task GetWeatherLogs_isEQToSeeded3()
        {
            ActionResult <IEnumerable <WeatherLog> > logs = await _weatherController.GetWeatherLogs();

            Assert.InRange(logs.Value.Count(), 2, 3);
        }