public void UpdateTest()
 {
     CountriesManager target = new CountriesManager(); // TODO: Initialize to an appropriate value
     Country theObj = null;
     int actual;
     theObj = target.GetByKey(TEST_CODE);
     theObj.Iso3 = "TTT";
     actual = target.Update(theObj);
     Assert.IsTrue(actual > 0);
 }