Ejemplo n.º 1
0
        public void testAddAndFetchWeatherStation()
        {
            WeatherThreshold testThreshold = new WeatherThreshold(10, 120);

            DatabaseOperations.AddWeatherThreshold(testThreshold);
            int time = DatabaseOperations.FetchWeatherThreshold().SnowDumpTime;

            Assert.AreEqual(120, time);
        }