/// <summary>
        /// Helper Method that executes the test
        /// </summary>
        /// <param name="country"></param>
        /// <param name="image"></param>
        private void Execute_GetImageForCountry_SeveralTests(string country, string image)
        {
            #region Arrange

            string expected = image;
            CountryHandler target = new CountryHandler();

            #endregion

            #region Act

            string actual = target.GetImageForCountry(country);

            #endregion

            #region Assert

            Assert.AreEqual(expected, actual);

            #endregion
        }