示例#1
0
        public void testSetsCurrentWeatherConditions()
        {
            WeatherTracker tracker = new WeatherTracker();

            tracker.setCurrentConditions("cloudy");
            Assert.Equal("cloudy", tracker.currentConditions);
        }
示例#2
0
        public void testNotifiesWhenWeatherChanges()
        {
            WeatherTracker tracker = new WeatherTracker();

            tracker.setCurrentConditions("cloudy");
            MockNotifier mockNotifier = new MockNotifier();

            tracker.notify(mockNotifier);
            Assert.Equal("foo", mockNotifier.getConsoleOutput());
        }