Пример #1
0
 void Start()
 {
     weatherMan = GameObject.FindWithTag("WeatherCreator").GetComponent <WeatherMan>();
     StartCoroutine("deactivateWeatherDetector");
 }
Пример #2
0
        public void IsValidDayIndex_Values_CorrectResponse(int dayIndex, bool expectedOutput)
        {
            var weatherMan = new WeatherMan();

            Assert.AreEqual(expectedOutput, weatherMan.IsValidDayIndex(dayIndex));
        }