Beispiel #1
0
        public void FirstCharToUpperTest()
        {
            WeatherDataServiceFactory wdf  = new WeatherDataServiceFactory();
            IWeatherDataService       iwds = wdf.GetWeatherDataService(10);
            string test = iwds.FirstCharToUpper("united states");

            Assert.Equals(test, "United States");
        }